Methods Summary |
---|
protected int | compareTo0(Constant other){@inheritDoc}
int otherBits = ((CstLiteral32) other).bits;
if (bits < otherBits) {
return -1;
} else if (bits > otherBits) {
return 1;
} else {
return 0;
}
|
public final boolean | equals(java.lang.Object other){@inheritDoc}
return (other != null) &&
(getClass() == other.getClass()) &&
bits == ((CstLiteral32) other).bits;
|
public final boolean | fitsInInt(){@inheritDoc}
return true;
|
public final int | getIntBits(){@inheritDoc}
return bits;
|
public final long | getLongBits(){@inheritDoc}
return (long) bits;
|
public final int | hashCode(){@inheritDoc}
return bits;
|
public final boolean | isCategory2(){@inheritDoc}
return false;
|