Home | History | Annotate | Download | only in type

Lines Matching refs:OBJECT

41     /** {@code non-null;} the list {@code [Object]} */
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
68 /** {@code non-null;} the list {@code [Object, Object]} */
70 StdTypeList.make(Type.OBJECT, Type.OBJECT);
72 /** {@code non-null;} the list {@code [int, Object]} */
74 StdTypeList.make(Type.INT, Type.OBJECT);
76 /** {@code non-null;} the list {@code [long, Object]} */
78 StdTypeList.make(Type.LONG, Type.OBJECT);
80 /** {@code non-null;} the list {@code [float, Object]} */
82 StdTypeList.make(Type.FLOAT, Type.OBJECT);
84 /** {@code non-null;} the list {@code [double, Object]} */
86 StdTypeList.make(Type.DOUBLE, Type.OBJECT);
108 /** {@code non-null;} the list {@code [Object[], int]} */
144 /** {@code non-null;} the list {@code [Object, Object[], int]} */
146 StdTypeList.make(Type.OBJECT, Type.OBJECT_ARRAY, Type.INT);