Package | Description |
---|---|
com.tailf.proto |
Package containing java class representations of Erlang datatypes or terms
which are used internally in the communication between the Library and
ConfD/NCS.
|
Modifier and Type | Method and Description |
---|---|
static ConfEObject |
ConfEObject.decode(ConfInputStream buf)
Read binary data in the E external format, and produce a corresponding E
data type object.
|
int |
ConfInputStream.peek()
Look ahead one position in the stream without consuming the byte found
there.
|
ConfEObject |
ConfInputStream.read_any()
Read an arbitrary E term from the stream.
|
String |
ConfInputStream.read_atom()
Read an E atom from the stream.
|
BigInteger |
ConfInputStream.read_big() |
byte[] |
ConfInputStream.read_binary()
Read an E binary from the stream.
|
boolean |
ConfInputStream.read_boolean()
Read an E atom from the stream and interpret the value as a boolean.
|
byte |
ConfInputStream.read_byte()
Read one byte from the stream.
|
char |
ConfInputStream.read_char()
Read a character from the stream.
|
double |
ConfInputStream.read_double()
Read an E float from the stream.
|
float |
ConfInputStream.read_float()
Read an E float from the stream.
|
int |
ConfInputStream.read_int()
Read an integer from the stream.
|
int |
ConfInputStream.read_list_head()
Read a list header from the stream.
|
ConfEObject |
ConfInputStream.read_long_big() |
long |
ConfInputStream.read_long()
Read a long from the stream.
|
long |
ConfInputStream.read_long(boolean unsigned) |
int |
ConfInputStream.read_nil()
Read an empty list from the stream.
|
ConfEPid |
ConfInputStream.read_pid()
Read an E pid from the stream.
|
ConfERef |
ConfInputStream.read_ref()
Read an E reference from the stream.
|
short |
ConfInputStream.read_short()
Read a short from the stream.
|
String |
ConfInputStream.read_string()
Read a string from the stream.
|
int |
ConfInputStream.read_tuple_head()
Read a tuple header from the stream.
|
int |
ConfInputStream.read_uint()
Read an unsigned integer from the stream.
|
long |
ConfInputStream.read_ulong()
Read an unsigned long from the stream.
|
short |
ConfInputStream.read_ushort()
Read an unsigned short from the stream.
|
int |
ConfInputStream.read1()
Read a one byte integer from the stream.
|
int |
ConfInputStream.read2BE()
Read a two byte big endian integer from the stream.
|
int |
ConfInputStream.read2LE()
Read a two byte little endian integer from the stream.
|
int |
ConfInputStream.read4BE()
Read a four byte big endian integer from the stream.
|
int |
ConfInputStream.read4LE()
Read a four byte little endian integer from the stream.
|
long |
ConfInputStream.readBE(int n)
Read a big endian integer from the stream.
|
long |
ConfInputStream.readLE(int n)
Read a little endian integer from the stream.
|
int |
ConfInputStream.readN(byte[] buf)
Read an array of bytes from the stream.
|
Constructor and Description |
---|
ConfEAtom(ConfInputStream buf)
Create an atom from a stream containing an atom encoded in E external
format.
|
ConfEBig(ConfInputStream buf)
Create an E integer from a stream containing an integer encoded in E
external format.
|
ConfEBinary(ConfInputStream buf)
Create a binary from a stream containing a binary encoded in E external
format.
|
ConfEBoolean(ConfInputStream buf)
Create a boolean from a stream containing an atom encoded in E external
format.
|
ConfEByte(ConfInputStream buf)
Create an E integer from a stream containing an integer encoded in E
external format.
|
ConfEChar(ConfInputStream buf)
Create an E integer from a stream containing an integer encoded in E
external format.
|
ConfEDouble(ConfInputStream buf)
Create an E float from a stream containing a double encoded in E external
format.
|
ConfEFloat(ConfInputStream buf)
Create an E float from a stream containing a float encoded in E external
format.
|
ConfEInt(ConfInputStream buf)
Create an E integer from a stream containing an integer encoded in E
external format.
|
ConfEList(ConfInputStream buf)
Create a list from a stream containing an list encoded in E external
format.
|
ConfELong(ConfInputStream buf)
Create an E integer from a stream containing an integer encoded in E
external format.
|
ConfEPid(ConfInputStream buf)
Create an E pid from a stream containing a pid encoded in E external
format.
|
ConfERef(ConfInputStream buf)
Create an E ref from a stream containing a ref encoded in E external
format.
|
ConfEShort(ConfInputStream buf)
Create an E integer from a stream containing an integer encoded in E
external format.
|
ConfEString(ConfInputStream buf)
Create an E string from a stream containing a string encoded in E
external format.
|
ConfETuple(ConfInputStream buf)
Create a tuple from a stream containing an tuple encoded in E external
format.
|
ConfEUInt(ConfInputStream buf)
Create an E integer from a stream containing an integer encoded in E
external format.
|
ConfEUShort(ConfInputStream buf)
Create an E integer from a stream containing an integer encoded in E
external format.
|