Serialized Form


Package net.sf.ivmaidns.dns

Class net.sf.ivmaidns.dns.DNSMsgHeader extends java.lang.Object implements Serializable

serialVersionUID: 3319548900112653688L

Serialized Fields

id

short id
NOTE: An unsigned identifier assigned by the client that generates a query message. This identifier is copied into the corresponding reply and can be used by the requester to match up replies to outstanding queries.

 

flags

short flags
NOTE: flags field consists of QR, opCode, AA, TC, RD, RA, a reserved flag (should be zero), AD, CD and rCode. opCode field (which is set by the originator of a query and copied into the response) specifies the kind of query. rCode field (response code) is set as part of responses.

 

qdCount

short qdCount
NOTE: An unsigned short integer specifying the number of entries in the question section.

 

anCount

short anCount
NOTE: An unsigned short integer specifying the number of entries in the answer section.

 

nsCount

short nsCount
NOTE: An unsigned short integer specifying the number of entries in the authority section.

 

arCount

short arCount
NOTE: An unsigned short integer specifying the number of entries in the additional section.

 

Class net.sf.ivmaidns.dns.DNSName extends java.lang.Object implements Serializable

serialVersionUID: 902307735131026602L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

bytes

byte[] bytes
NOTE: bytes != null. bytes length must be == lengthOf(bytes, 0). bytes may be not canonical, bytes cannot be compressed. bytes content is described in RFC1035.

 

Class net.sf.ivmaidns.dns.DNSRecAltCmp extends GComparator implements Serializable

serialVersionUID: 4428663077680643378L

Class net.sf.ivmaidns.dns.DNSRecord extends java.lang.Object implements Serializable

serialVersionUID: 7339921300775713171L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

rName

DNSName rName
NOTE: rName must be != null.

 

rType

short rType
NOTE: rType is an unsigned short.

 

rClass

short rClass
NOTE: rClass is an unsigned short.

 

ttl

int ttl
NOTE: ttl is unsigned (but should be >= 0, in fact).

 

rDataBytes

byte[] rDataBytes
NOTE: rDataBytes must be != null and (rDataBytes length & ~RDATA_LEN_MASK) == 0.

 

Package net.sf.ivmaidns.storage

Class net.sf.ivmaidns.storage.FilterStorage extends Storage implements Serializable

serialVersionUID: 6628976016725372247L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

source

Storage source
NOTE: Filter storage must be synchronized with source if source != null.

Class net.sf.ivmaidns.storage.HashedStorage extends ObjectStorage implements Serializable

serialVersionUID: 4893448275881941455L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

Class net.sf.ivmaidns.storage.ListStorage extends ObjectStorage implements Serializable

serialVersionUID: 8729441242300226023L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
NOTE: Must be synchronized outside.

Throws:
java.io.IOException

Class net.sf.ivmaidns.storage.ObjectStorage extends Storage implements Serializable

serialVersionUID: 7652582440997838363L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
NOTE: Must be synchronized outside.

Throws:
java.io.IOException

Class net.sf.ivmaidns.storage.SortedStorage extends ObjectStorage implements Serializable

serialVersionUID: 9156069725514802205L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

comparator

GComparator comparator
NOTE: comparator must be != null. This field is serialized and cloned (shallow).

Class net.sf.ivmaidns.storage.StorageEnumerator extends ObservedCore implements Serializable

serialVersionUID: 6807429201174280727L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

source

Storage source
NOTE: source must be != null. enumerator must be synchronized with source.


location

int location
NOTE: If location != 0 then location must be valid. If value at this location is removed in source then location is automatically set to the next location in source. If this location is changed then the observers are notified with the argument of its previous value wrapped by Integer.

Class net.sf.ivmaidns.storage.StorageEvent extends java.lang.Object implements Serializable

serialVersionUID: 1079274082506263249L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

source

Storage source
NOTE: source must be != null.


prevLoc

int prevLoc

location

int location

oldValue

java.lang.Object oldValue
NOTE: oldValue may be == null.

Class net.sf.ivmaidns.storage.TreeStorage extends ObjectStorage implements Serializable

serialVersionUID: 538074621019444581L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
NOTE: Must be synchronized outside.

Throws:
java.io.IOException

Package net.sf.ivmaidns.util

Class net.sf.ivmaidns.util.BooleanVector extends java.lang.Object implements Serializable

serialVersionUID: 8163381858820555196L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
BooleanVector.BooleanVector(boolean[]), BooleanVector.integrityCheck()
Serialized Fields

array

boolean[] array
The wrapped (encapsulated) custom boolean array. array must be non-null.

 
See Also:
BooleanVector.EMPTY, BooleanVector.BooleanVector(), BooleanVector.BooleanVector(int), BooleanVector.BooleanVector(boolean[]), BooleanVector.setArray(boolean[]), BooleanVector.array(), BooleanVector.length(), BooleanVector.resize(int), BooleanVector.ensureSize(int), BooleanVector.setAt(int, boolean), BooleanVector.getBooleanAt(int), BooleanVector.copyAt(int, int, int), BooleanVector.clone(), BooleanVector.integrityCheck()

Class net.sf.ivmaidns.util.ByteVector extends java.lang.Object implements Serializable

serialVersionUID: 7607316748379187552L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
ByteVector.ByteVector(byte[]), ByteVector.integrityCheck()
Serialized Fields

array

byte[] array
The wrapped (encapsulated) custom byte array. array must be non-null.

 
See Also:
ByteVector.EMPTY, ByteVector.ByteVector(), ByteVector.ByteVector(int), ByteVector.ByteVector(byte[]), ByteVector.setArray(byte[]), ByteVector.array(), ByteVector.length(), ByteVector.resize(int), ByteVector.ensureSize(int), ByteVector.setAt(int, byte), ByteVector.getByteAt(int), ByteVector.copyAt(int, int, int), ByteVector.clone(), ByteVector.integrityCheck()

Class net.sf.ivmaidns.util.CharVector extends java.lang.Object implements Serializable

serialVersionUID: 704428284230945389L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
CharVector.CharVector(char[]), CharVector.integrityCheck()
Serialized Fields

array

char[] array
The wrapped (encapsulated) custom char array. array must be non-null.

 
See Also:
CharVector.EMPTY, CharVector.CharVector(), CharVector.CharVector(int), CharVector.CharVector(char[]), CharVector.setArray(char[]), CharVector.array(), CharVector.length(), CharVector.resize(int), CharVector.ensureSize(int), CharVector.setAt(int, char), CharVector.getCharAt(int), CharVector.copyAt(int, int, int), CharVector.clone(), CharVector.integrityCheck()

Class net.sf.ivmaidns.util.ConstPair extends java.lang.Object implements Serializable

serialVersionUID: 3724364892682440569L

Serialized Fields

valueA

java.lang.Object valueA
The first custom object of this pair.

 
See Also:
ConstPair.ConstPair(java.lang.Object, java.lang.Object), ConstPair.getAt(int)

valueB

java.lang.Object valueB
The second custom object of this pair.

 
See Also:
ConstPair.ConstPair(java.lang.Object, java.lang.Object), ConstPair.getAt(int)

Class net.sf.ivmaidns.util.ConstVector extends java.lang.Object implements Serializable

serialVersionUID: 3843350134190606883L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
ConstVector.ConstVector(java.lang.Object[]), ConstVector.integrityCheck()
Serialized Fields

array

java.lang.Object[] array
The wrapped (encapsulated) custom array of objects. array must be non-null (but its elements may be null). Important notes: array[index] must not be changed anyhow for every index; the component type of array is of no use here.

 
See Also:
ConstVector.ConstVector(java.lang.Object[]), ConstVector.length(), ConstVector.getAt(int), ConstVector.toArray(), ConstVector.integrityCheck()

Class net.sf.ivmaidns.util.DoubleVector extends java.lang.Object implements Serializable

serialVersionUID: 4640258360994235625L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
DoubleVector.DoubleVector(double[]), DoubleVector.integrityCheck()
Serialized Fields

array

double[] array
The wrapped (encapsulated) custom double array. array must be non-null.

 
See Also:
DoubleVector.EMPTY, DoubleVector.DoubleVector(), DoubleVector.DoubleVector(int), DoubleVector.DoubleVector(double[]), DoubleVector.setArray(double[]), DoubleVector.array(), DoubleVector.length(), DoubleVector.resize(int), DoubleVector.ensureSize(int), DoubleVector.setAt(int, double), DoubleVector.getDoubleAt(int), DoubleVector.copyAt(int, int, int), DoubleVector.clone(), DoubleVector.integrityCheck()

Class net.sf.ivmaidns.util.FloatVector extends java.lang.Object implements Serializable

serialVersionUID: 1170284172753300166L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
FloatVector.FloatVector(float[]), FloatVector.integrityCheck()
Serialized Fields

array

float[] array
The wrapped (encapsulated) custom float array. array must be non-null.

 
See Also:
FloatVector.EMPTY, FloatVector.FloatVector(), FloatVector.FloatVector(int), FloatVector.FloatVector(float[]), FloatVector.setArray(float[]), FloatVector.array(), FloatVector.length(), FloatVector.resize(int), FloatVector.ensureSize(int), FloatVector.setAt(int, float), FloatVector.getFloatAt(int), FloatVector.copyAt(int, int, int), FloatVector.clone(), FloatVector.integrityCheck()

Class net.sf.ivmaidns.util.GComparator extends java.lang.Object implements Serializable

serialVersionUID: 1310911848083016948L

Class net.sf.ivmaidns.util.IntVector extends java.lang.Object implements Serializable

serialVersionUID: 3332798898808066151L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
IntVector.IntVector(int[]), IntVector.integrityCheck()
Serialized Fields

array

int[] array
The wrapped (encapsulated) custom int array. array must be non-null.

 
See Also:
IntVector.EMPTY, IntVector.IntVector(), IntVector.IntVector(int), IntVector.IntVector(int[]), IntVector.setArray(int[]), IntVector.array(), IntVector.length(), IntVector.resize(int), IntVector.ensureSize(int), IntVector.setAt(int, int), IntVector.getIntAt(int), IntVector.copyAt(int, int, int), IntVector.clone(), IntVector.integrityCheck()

Class net.sf.ivmaidns.util.LongVector extends java.lang.Object implements Serializable

serialVersionUID: 2430681083673392889L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
LongVector.LongVector(long[]), LongVector.integrityCheck()
Serialized Fields

array

long[] array
The wrapped (encapsulated) custom long array. array must be non-null.

 
See Also:
LongVector.EMPTY, LongVector.LongVector(), LongVector.LongVector(int), LongVector.LongVector(long[]), LongVector.setArray(long[]), LongVector.array(), LongVector.length(), LongVector.resize(int), LongVector.ensureSize(int), LongVector.setAt(int, long), LongVector.getLongAt(int), LongVector.copyAt(int, int, int), LongVector.clone(), LongVector.integrityCheck()

Class net.sf.ivmaidns.util.ObjectVector extends java.lang.Object implements Serializable

serialVersionUID: 6672186998322310510L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class. The component type of the wrapped array is set to Object.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
ObjectVector.ObjectVector(java.lang.Object[]), ObjectVector.integrityCheck()
Serialized Fields

array

java.lang.Object[] array
The encapsulated Object-type array. array must be the exact instance of Object[].

 
See Also:
ObjectVector.EMPTY, ObjectVector.ObjectVector(), ObjectVector.ObjectVector(int), ObjectVector.ObjectVector(java.lang.Object[]), ObjectVector.setArrayCloned(java.lang.Object[]), ObjectVector.array(), ObjectVector.length(), ObjectVector.toArray(), ObjectVector.resize(int), ObjectVector.ensureSize(int), ObjectVector.setAt(int, java.lang.Object), ObjectVector.getAt(int), ObjectVector.copyAt(int, int, int), ObjectVector.clone(), ObjectVector.integrityCheck()

Class net.sf.ivmaidns.util.ParserException extends java.lang.NumberFormatException implements Serializable

serialVersionUID: 2211498944992357376L

Serialized Fields

str

java.lang.String str
The string containing the region being parsed. Important notes: this value may be null.

 
See Also:
ParserException.ParserException(), ParserException.ParserException(java.lang.String, int, int), ParserException.getStr(), ParserException.index, ParserException.error

index

int index
The parsed string index at which this exception occurs during the string region being parsed. Important notes: index may be of any integer value; if its value is negative then it should be treated as zero; if its value is too big then it should be treated as length() of str (only if str is not null else it should be treated as zero).

 
See Also:
ParserException.ParserException(), ParserException.ParserException(java.lang.String, int, int), ParserException.getIndex(), ParserException.str, ParserException.error

error

int error
The error reason code explaining why this exception is thrown during the string region being parsed. Important notes: error may be of any integer value; if its value is not positive then it should be treated as zero (indicating an unknown error).

 
See Also:
ParserException.ParserException(), ParserException.ParserException(java.lang.String, int, int), ParserException.getError(), ParserException.str, ParserException.index

Class net.sf.ivmaidns.util.PseudoRandom extends java.lang.Object implements Serializable

serialVersionUID: -1655238629402664209L

Serialized Fields

seed

long seed
The internal state associated with this pseudo-random number generator. seed (which consists of two shift registers) is initially set by the constructor and modified each time this generator produces a new value. seed may be of any value, which may be modified asynchronously (since the algorithm includes the checks for zero values of any or both shift registers).

 
See Also:
PseudoRandom.PseudoRandom(long), PseudoRandom.clone(), PseudoRandom.nextInt(int), PseudoRandom.toString()

Class net.sf.ivmaidns.util.ShortVector extends java.lang.Object implements Serializable

serialVersionUID: 5920043942620025576L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Deserializes an object of this class from a given stream. This method is responsible for reading from in stream, restoring the classes fields, and verifying that the serialized object is not corrupted. First of all, it calls defaultReadObject() for in to invoke the default deserialization mechanism. Then, it restores the state of transient fields and performs additional verification of the deserialized object. This method is used only internally by ObjectInputStream class.

Throws:
java.lang.NullPointerException - if in is null.
java.io.IOException - if any I/O error occurs or the serialized object is corrupted.
java.lang.ClassNotFoundException - if the class for an object being restored cannot be found.
java.lang.OutOfMemoryError - if there is not enough memory.
See Also:
ShortVector.ShortVector(short[]), ShortVector.integrityCheck()
Serialized Fields

array

short[] array
The wrapped (encapsulated) custom short array. array must be non-null.

 
See Also:
ShortVector.EMPTY, ShortVector.ShortVector(), ShortVector.ShortVector(int), ShortVector.ShortVector(short[]), ShortVector.setArray(short[]), ShortVector.array(), ShortVector.length(), ShortVector.resize(int), ShortVector.ensureSize(int), ShortVector.setAt(int, short), ShortVector.getShortAt(int), ShortVector.copyAt(int, int, int), ShortVector.clone(), ShortVector.integrityCheck()

Class net.sf.ivmaidns.util.StrComparator extends GComparator implements Serializable

serialVersionUID: 2114110405911422799L

Class net.sf.ivmaidns.util.ToString extends java.lang.Object implements Serializable

serialVersionUID: 6412171811255872037L

Class net.sf.ivmaidns.util.UnsignedInt extends java.lang.Number implements Serializable

serialVersionUID: 1932227259095163224L

Serialized Fields

unsignedValue

int unsignedValue
The wrapped (encapsulated) unsigned int value. Important notes: this value is constant.

 
See Also:
UnsignedInt.UnsignedInt(int), UnsignedInt.valueOf(java.lang.String), UnsignedInt.clone(), UnsignedInt.hashCode(), UnsignedInt.intValue(), UnsignedInt.longValue(), UnsignedInt.floatValue(), UnsignedInt.doubleValue(), UnsignedInt.equals(java.lang.Object), UnsignedInt.greaterThan(java.lang.Object), UnsignedInt.toString()

Class net.sf.ivmaidns.util.UnsignedLong extends java.lang.Number implements Serializable

serialVersionUID: -458543887421779763L

Serialized Fields

unsignedValue

long unsignedValue
The wrapped (encapsulated) unsigned long value. Important notes: this value is constant.

 
See Also:
UnsignedLong.UnsignedLong(long), UnsignedLong.valueOf(java.lang.String), UnsignedLong.clone(), UnsignedLong.hashCode(), UnsignedLong.intValue(), UnsignedLong.longValue(), UnsignedLong.floatValue(), UnsignedLong.doubleValue(), UnsignedLong.equals(java.lang.Object), UnsignedLong.greaterThan(java.lang.Object), UnsignedLong.toString()