Uses of Class
com.tailf.proto.ConfEDecodeException

Packages that use ConfEDecodeException
Package
Description
Package containing java class representations of Erlang datatypes or terms which are used internally in the communication between the Library and ConfD/NCS.
  • Uses of ConfEDecodeException in com.tailf.proto

    Modifier and Type
    Method
    Description
    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.
    ConfInputStream.read_any()
    Read an arbitrary E term from the stream.
    ConfInputStream.read_atom()
    Read an E atom from the stream.
    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.
    long
    ConfInputStream.read_long()
    Read a long from the stream.
    long
    ConfInputStream.read_long(boolean unsigned)
     
    ConfInputStream.read_long_big()
     
    int
    ConfInputStream.read_nil()
    Read an empty list from the stream.
    ConfInputStream.read_pid()
    Read an E pid from the stream.
    ConfInputStream.read_ref()
    Read an E reference from the stream.
    short
    ConfInputStream.read_short()
    Read a short from the stream.
    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.
    Constructors in com.tailf.proto that throw ConfEDecodeException
    Modifier
    Constructor
    Description
     
    Create an atom from a stream containing an atom encoded in E external format.
     
    Create an E integer from a stream containing an integer encoded in E external format.
     
    Create a binary from a stream containing a binary encoded in E external format.
     
    Create a boolean from a stream containing an atom encoded in E external format.
     
    Create an E integer from a stream containing an integer encoded in E external format.
     
    Create an E integer from a stream containing an integer encoded in E external format.
     
    Create an E float from a stream containing a double encoded in E external format.
     
    Create an E float from a stream containing a float encoded in E external format.
     
    Create an E integer from a stream containing an integer encoded in E external format.
     
    Create a list from a stream containing an list encoded in E external format.
     
    Create an E integer from a stream containing an integer encoded in E external format.
     
    Create an E pid from a stream containing a pid encoded in E external format.
     
    Create an E ref from a stream containing a ref encoded in E external format.
     
    Create an E integer from a stream containing an integer encoded in E external format.
     
    Create an E string from a stream containing a string encoded in E external format.
     
    Create a tuple from a stream containing an tuple encoded in E external format.
     
    Create an E integer from a stream containing an integer encoded in E external format.
     
    Create an E integer from a stream containing an integer encoded in E external format.