Searched defs:CstType (Results 1 - 1 of 1) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstType.java26 public final class CstType extends TypedConstant { class in inherits:TypedConstant
28 private static final HashMap<Type, CstType> interns =
29 new HashMap<Type, CstType>(100);
32 public static final CstType OBJECT = intern(Type.OBJECT);
35 public static final CstType BOOLEAN = intern(Type.BOOLEAN_CLASS);
38 public static final CstType BYTE = intern(Type.BYTE_CLASS);
41 public static final CstType CHARACTER = intern(Type.CHARACTER_CLASS);
44 public static final CstType DOUBLE = intern(Type.DOUBLE_CLASS);
47 public static final CstType FLOAT = intern(Type.FLOAT_CLASS);
50 public static final CstType LON
143 public CstType(Type type) { method in class:CstType
[all...]

Completed in 896 milliseconds