Methods Summary |
---|
protected int | compareTo0(Constant other){@inheritDoc}
return 0;
|
public boolean | equals(java.lang.Object other){@inheritDoc}
return (other instanceof CstKnownNull);
|
public boolean | fitsInInt(){@inheritDoc}
// See comment in getIntBits().
return true;
|
public int | getIntBits(){@inheritDoc}
As "literal bits," a known-null is always represented as the
number zero.
return 0;
|
public long | getLongBits(){@inheritDoc}
As "literal bits," a known-null is always represented as the
number zero.
return 0;
|
public com.android.dexgen.rop.type.Type | getType(){@inheritDoc}
return Type.KNOWN_NULL;
|
public int | hashCode(){@inheritDoc}
return 0x4466757a;
|
public boolean | isCategory2(){@inheritDoc}
return false;
|
public java.lang.String | toHuman(){@inheritDoc}
return "null";
|
public java.lang.String | toString(){@inheritDoc}
return "known-null";
|
public java.lang.String | typeName(){@inheritDoc}
return "known-null";
|