public class Int128Parts extends java.lang.Object implements XdrElement
struct Int128Parts {
int64 hi;
uint64 lo;
};
| Modifier and Type | Class and Description |
|---|---|
static class |
Int128Parts.Int128PartsBuilder |
| Constructor and Description |
|---|
Int128Parts() |
Int128Parts(Int64 hi,
Uint64 lo) |
| Modifier and Type | Method and Description |
|---|---|
static Int128Parts.Int128PartsBuilder |
builder() |
static Int128Parts |
decode(XdrDataInputStream stream) |
void |
encode(XdrDataOutputStream stream) |
boolean |
equals(java.lang.Object o) |
static Int128Parts |
fromXdrBase64(java.lang.String xdr) |
static Int128Parts |
fromXdrByteArray(byte[] xdr) |
Int64 |
getHi() |
Uint64 |
getLo() |
int |
hashCode() |
void |
setHi(Int64 hi) |
void |
setLo(Uint64 lo) |
Int128Parts.Int128PartsBuilder |
toBuilder() |
java.lang.String |
toString() |
toXdrBase64, toXdrByteArraypublic void encode(XdrDataOutputStream stream) throws java.io.IOException
encode in interface XdrElementjava.io.IOExceptionpublic static Int128Parts decode(XdrDataInputStream stream) throws java.io.IOException
java.io.IOExceptionpublic static Int128Parts fromXdrBase64(java.lang.String xdr) throws java.io.IOException
java.io.IOExceptionpublic static Int128Parts fromXdrByteArray(byte[] xdr) throws java.io.IOException
java.io.IOExceptionpublic static Int128Parts.Int128PartsBuilder builder()
public Int128Parts.Int128PartsBuilder toBuilder()
public Int64 getHi()
public Uint64 getLo()
public void setHi(Int64 hi)
public void setLo(Uint64 lo)
public boolean equals(java.lang.Object o)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Object