Package com.tailf.proto
Class ConfEUShort
Object
com.tailf.proto.ConfEObject
com.tailf.proto.ConfELong
com.tailf.proto.ConfEUShort
- All Implemented Interfaces:
Serializable
,Cloneable
Provides a Java representation of E integral types.
- See Also:
-
Constructor Summary
ConstructorDescriptionConfEUShort
(short s) Create an E integer from the given value.Create an E integer from a stream containing an integer encoded in E external format. -
Method Summary
Methods inherited from class com.tailf.proto.ConfELong
byteValue, charValue, encode, equals, intValue, longValue, shortValue, toString, uIntValue, uShortValue
Methods inherited from class com.tailf.proto.ConfEObject
clone, decode
-
Constructor Details
-
ConfEUShort
Create an E integer from the given value.- Parameters:
s
- the non-negative short value to use.- Throws:
ConfERangeException
- if the value is negative.
-
ConfEUShort
Create an E integer from a stream containing an integer encoded in E external format.- Parameters:
buf
- the stream containing the encoded value.- Throws:
ConfEDecodeException
- if the buffer does not contain a valid external representation of an E integer.ConfERangeException
- if the value is too large to be represented as a short, or the value is negative.
-