public final class EncodedValue extends Object implements Comparable<EncodedValue>
| Constructor and Description |
|---|
EncodedValue(byte[] data) |
| Modifier and Type | Method and Description |
|---|---|
ByteInput |
asByteInput() |
int |
compareTo(EncodedValue other)
Compares this object to the specified object to determine their relative
order.
|
byte[] |
getBytes() |
String |
toString()
Returns a string containing a concise, human-readable description of this
object.
|
void |
writeTo(Dex.Section out) |
public ByteInput asByteInput()
public byte[] getBytes()
public void writeTo(Dex.Section out)
public int compareTo(EncodedValue other)
ComparablecompareTo in interface Comparable<EncodedValue>other - the object to compare to this instance.another;
a positive integer if this instance is greater than
another; 0 if this instance has the same order as
another.public String toString()
ObjectgetClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toString method
if you intend implementing your own toString method.