Lines Matching refs:Type

46 public class Type {  class
139 Type.class, new TypeClass[] { TypeClass.TYPE, TypeClass.TYPE }); in __javaClassToTypeClass.put()
147 public static final Type VOID = new Type(void.class);
148 public static final Type CHAR = new Type(char.class);
149 public static final Type BOOLEAN = new Type(boolean.class);
150 public static final Type BYTE = new Type(byte.class);
151 public static final Type SHORT = new Type(short.class);
152 public static final Type UNSIGNED_SHORT = new Type(
154 public static final Type LONG = new Type(int.class);
155 public static final Type UNSIGNED_LONG = new Type(
157 public static final Type HYPER = new Type(long.class);
158 public static final Type UNSIGNED_HYPER = new Type(
160 public static final Type FLOAT = new Type(float.class);
161 public static final Type DOUBLE = new Type(double.class);
162 public static final Type STRING = new Type(String.class);
163 public static final Type TYPE = new Type(Type.class);
164 public static final Type ANY = new Type(Any.class);
169 public Type() { in Type() method in Type
183 public Type(String typeName, TypeClass typeClass) { in Type() method in Type
197 public Type(Class zClass) { in Type() method in Type
251 public Type(Class zClass, boolean alternative) { in Type() method in Type
261 public Type(ITypeDescription typeDescription) { in Type() method in Type
272 public Type(String typeName) { in Type() method in Type
307 public Type(TypeClass typeClass) { in Type() method in Type
391 public boolean isSupertypeOf(Type type) { in isSupertypeOf()
420 return obj instanceof Type in equals()
421 && _typeClass == ((Type) obj)._typeClass in equals()
422 && _typeName.equals(((Type) obj)._typeName); in equals()
452 Type t = new Type(zClass.getComponentType(), alternative); in init()
540 return _typeName.equals(TYPE_NAME_TYPE) ? Type.class : null; in determineClass()
594 if (args < 0 && new Type(c).getTypeClass() == TypeClass.UNKNOWN) in determineClass()
618 return new Type(c).equals(this) ? c : null; in determineClass()
631 return args >= 0 || new Type(c).equals(this) ? c : null; in determineClass()