public class ConfEUInt extends ConfELong implements Serializable, Cloneable
| Constructor and Description | 
|---|
ConfEUInt(ConfInputStream buf)
Create an E integer from a stream containing an integer encoded in E
 external format. 
 | 
ConfEUInt(int i)
Create an E integer from the given value. 
 | 
byteValue, charValue, encode, equals, intValue, longValue, shortValue, toString, uIntValue, uShortValueclone, decodepublic ConfEUInt(int i)
          throws ConfERangeException
i - the non-negative int value to use.ConfERangeException - if the value is negative.public ConfEUInt(ConfInputStream buf) throws ConfERangeException, ConfEDecodeException
buf - the stream containing the encoded value.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 an int, or
                the value is negative.