UM Java API
6.16.1
|
Public Member Functions | |
LBMSDMRawUint64 () throws LBMSDMException | |
LBMSDMRawUint64 (BigInteger v) throws LBMSDMException | |
void | set (BigInteger v) |
BigInteger | get () throws LBMSDMException |
int | format (byte[] buf, int offset) throws LBMSDMException |
String | toString () |
int | parse (byte[] buf, int offset) throws LBMSDMException |
BigInteger | toBigInteger () |
int | compareTo (BigInteger bi) |
LBMSDMRawUint64 | clone () throws CloneNotSupportedException |
String | toDbgString () |
void | set_debug_level (int level) |
void | log (String s) |
Static Public Member Functions | |
static int | format (byte[] buf, int offset, BigInteger v) throws LBMSDMException |
static BigInteger | parse_s (byte[] buf, int offset) throws LBMSDMException |
Static Public Attributes | |
static int | length = 8 |
static final int | DEBUG_BASIC = 1 |
static final int | DEBUG_VERBOSE_PARSING = 2 |
Protected Attributes | |
int | debug_level = 0 |
An LBMSDMRawUint64 is a helper class to minimise the effort of formatting and parsing unsigned 64 bit integers
com.latencybusters.lbm.sdm.LBMSDMRawUint64.LBMSDMRawUint64 | ( | ) | throws LBMSDMException |
Create a raw uint64 field, defaulting to 0
Referenced by com.latencybusters.lbm.sdm.LBMSDMRawUint64.clone().
com.latencybusters.lbm.sdm.LBMSDMRawUint64.LBMSDMRawUint64 | ( | BigInteger | v | ) | throws LBMSDMException |
Create a raw uint64 field providing the value as a BigInteger
v | The BigInteger to seed this raw object |
LBMSDMRawUint64 com.latencybusters.lbm.sdm.LBMSDMRawUint64.clone | ( | ) | throws CloneNotSupportedException |
Get a copy of this object
References com.latencybusters.lbm.sdm.LBMSDMRawUint64.clone(), com.latencybusters.lbm.sdm.LBMSDMRawUint64.LBMSDMRawUint64(), and com.latencybusters.lbm.sdm.LBMSDMRawUint64.set().
Referenced by com.latencybusters.lbm.sdm.LBMSDMRawUint64.clone(), com.latencybusters.lbm.sdm.LBMSDMFieldUint64.clone(), com.latencybusters.lbm.sdm.LBMSDMFieldUint64.set(), and com.latencybusters.lbm.sdm.LBMSDMArrayUint64.set().
int com.latencybusters.lbm.sdm.LBMSDMRawUint64.compareTo | ( | BigInteger | bi | ) |
Compare to another BigInteger
bi | The BigInteger to be compared to |
|
static |
Format an uint64 value into a byte buffer
buf | The buffer to contain the formatted value |
offset | The offset in to the buffer to start formatting |
v | The value of the uint64 to be formatted as a long |
References com.latencybusters.lbm.sdm.LBMSDMRawUint64.length.
Referenced by com.latencybusters.lbm.sdm.LBMSDMRawUint64.format(), and com.latencybusters.lbm.sdm.LBMSDMFieldUint64.format().
int com.latencybusters.lbm.sdm.LBMSDMRawUint64.format | ( | byte [] | buf, |
int | offset | ||
) | throws LBMSDMException |
Format the raw uint64 value into a byte buffer
buf | The buffer to contain the formatted value |
offset | The offset in to the buffer to start formatting |
References com.latencybusters.lbm.sdm.LBMSDMRawUint64.format().
BigInteger com.latencybusters.lbm.sdm.LBMSDMRawUint64.get | ( | ) | throws LBMSDMException |
Get a raw uint64 field as a BigInteger
Referenced by com.latencybusters.lbm.sdm.LBMSDMArrayUint64.set(), and com.latencybusters.lbm.sdm.LBMSDMFieldUint64.toBigInteger().
|
inherited |
Log an event. If debug level is set greater than 0, output to stderr
Referenced by com.latencybusters.lbm.sdm.LBMSDMFields.get_attr(), com.latencybusters.lbm.sdm.LBMSDMFields.LBMSDMFields(), com.latencybusters.lbm.sdm.LBMSDMFieldBlob.set(), com.latencybusters.lbm.sdm.LBMSDMFieldMessage.set(), com.latencybusters.lbm.sdm.LBMSDMFieldDecimal.set(), com.latencybusters.lbm.sdm.LBMSDMFieldTimestamp.set(), com.latencybusters.lbm.sdm.LBMSDMArrayDecimal.set(), and com.latencybusters.lbm.sdm.LBMSDMArrayUint64.set().
int com.latencybusters.lbm.sdm.LBMSDMRawUint64.parse | ( | byte [] | buf, |
int | offset | ||
) | throws LBMSDMException |
Parse the raw uint64 value from a byte buffer in to the object
buf | The buffer that contains the formatted value |
offset | The offset in to the buffer to start parsing |
References com.latencybusters.lbm.sdm.LBMSDMRawUint64.length, and com.latencybusters.lbm.sdm.LBMSDMRawUint64.parse_s().
Referenced by com.latencybusters.lbm.sdm.LBMSDMFieldUint64.parse().
|
static |
Parse the raw uint64 value from a byte buffer
buf | The buffer that contains the formatted value |
offset | The offset in to the buffer to start parsing |
Referenced by com.latencybusters.lbm.sdm.LBMSDMRawUint64.parse().
void com.latencybusters.lbm.sdm.LBMSDMRawUint64.set | ( | BigInteger | v | ) |
Set a raw uint64 field providing the value as a BigInteger
v | The BigInteger this raw object is to use |
Referenced by com.latencybusters.lbm.sdm.LBMSDMRawUint64.clone().
|
inherited |
Set the debug level for processing this SDM message. Currently all debugs go to standard out.
BigInteger com.latencybusters.lbm.sdm.LBMSDMRawUint64.toBigInteger | ( | ) |
Get the long representation of the uint64
Referenced by com.latencybusters.lbm.sdm.LBMSDMArrayUint64.toBigInteger(), and com.latencybusters.lbm.sdm.LBMSDMRawUint64.toString().
|
inherited |
Get a debug string for this object. This is not expected to be called and exists for child classes.
Referenced by com.latencybusters.lbm.sdm.LBMSDMBadRawObjectException.LBMSDMBadRawObjectException().
String com.latencybusters.lbm.sdm.LBMSDMRawUint64.toString | ( | ) |
Get a string version of an uint64
References com.latencybusters.lbm.sdm.LBMSDMRawUint64.toBigInteger().
|
staticinherited |
Debug flag for basic debug output
|
protectedinherited |
Debug mask for SDM implementation.
Referenced by com.latencybusters.lbm.sdm.LBMSDMessage.data(), com.latencybusters.lbm.sdm.LBMSDMessage.parse(), com.latencybusters.lbm.sdm.LBMSDMFieldMessage.parse(), and com.latencybusters.lbm.sdm.LBMSDMArrayMessage.parse().
|
staticinherited |
Debug flag for verbose message parsing output
|
static |
The number of bytes needed to store a raw LBMSDMRawUint64
Referenced by com.latencybusters.lbm.sdm.LBMSDMArrayUint64.append(), com.latencybusters.lbm.sdm.LBMSDMArrayUint64.clone(), com.latencybusters.lbm.sdm.LBMSDMRawUint64.format(), com.latencybusters.lbm.sdm.LBMSDMArrayUint64.LBMSDMArrayUint64(), and com.latencybusters.lbm.sdm.LBMSDMRawUint64.parse().