Package com.ericsson.otp.erlang
Class OtpErlangUInt
- java.lang.Object
 - 
- com.ericsson.otp.erlang.OtpErlangObject
 - 
- com.ericsson.otp.erlang.OtpErlangLong
 - 
- com.ericsson.otp.erlang.OtpErlangUInt
 
 
 
 
- 
- All Implemented Interfaces:
 java.io.Serializable,java.lang.Cloneable
public class OtpErlangUInt extends OtpErlangLong
Provides a Java representation of Erlang integral types.- See Also:
 - Serialized Form
 
 
- 
- 
Nested Class Summary
- 
Nested classes/interfaces inherited from class com.ericsson.otp.erlang.OtpErlangObject
OtpErlangObject.Hash 
 - 
 
- 
Field Summary
- 
Fields inherited from class com.ericsson.otp.erlang.OtpErlangObject
hashCodeValue 
 - 
 
- 
Constructor Summary
Constructors Constructor Description OtpErlangUInt(int i)Create an Erlang integer from the given value.OtpErlangUInt(OtpInputStream buf)Create an Erlang integer from a stream containing an integer encoded in Erlang external format. 
- 
Method Summary
- 
Methods inherited from class com.ericsson.otp.erlang.OtpErlangLong
bigIntegerValue, bitLength, byteValue, charValue, doHashCode, encode, equals, intValue, isLong, isULong, longValue, shortValue, signum, toString, uIntValue, uShortValue 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
OtpErlangUInt
public OtpErlangUInt(int i) throws OtpErlangRangeExceptionCreate an Erlang integer from the given value.- Parameters:
 i- the non-negative int value to use.- Throws:
 OtpErlangRangeException- if the value is negative.
 
- 
OtpErlangUInt
public OtpErlangUInt(OtpInputStream buf) throws OtpErlangRangeException, OtpErlangDecodeException
Create an Erlang integer from a stream containing an integer encoded in Erlang external format.- Parameters:
 buf- the stream containing the encoded value.- Throws:
 OtpErlangDecodeException- if the buffer does not contain a valid external representation of an Erlang integer.OtpErlangRangeException- if the value is too large to be represented as an int, or the value is negative.
 
 - 
 
 -