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

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstString.java26 public final class CstString extends TypedConstant { class in inherits:TypedConstant
31 public static final CstString EMPTY_STRING = new CstString("");
180 public CstString(String string) { method in class:CstString
194 public CstString(ByteArray bytes) { method in class:CstString
206 if (!(other instanceof CstString)) {
210 return string.equals(((CstString) other).string);
222 return string.compareTo(((CstString) other).string);

Completed in 64 milliseconds