Class semper.certificate.IntObject
All Packages Class Hierarchy This Package Previous Next Index
Class semper.certificate.IntObject
java.lang.Object
|
+----semper.certificate.IntObject
- public class IntObject
- extends Object
- implements Streamable
-
_a
-
-
IntObject()
-
-
IntObject(int)
- Create a Integer object, whic is an Integer that can be transferred
via streams.
-
myStreamSize()
- Calculate size of this object when writeing it to TargetStream.
-
readObject(StreamInputInterface)
- Reads the object from an io stream (TargetStream).
-
value()
- Retrieve actual value of the Integer Object
-
writeObject(StreamOutputInterface)
- Writes the object to an io stream (TargetStream).
_a
public int _a
IntObject
public IntObject(int b)
- Create a Integer object, whic is an Integer that can be transferred
via streams.
- Parameters:
- Integer - value, that is to be transferred.
IntObject
public IntObject()
value
public int value()
- Retrieve actual value of the Integer Object
readObject
public void readObject(StreamInputInterface s) throws StreamIOException
- Reads the object from an io stream (TargetStream).
- Parameters:
- s - is the stream the object is read from
- Returns:
- void
- Throws: StreamIOException
- if read failed.
- See Also:
- writeObject
writeObject
public void writeObject(StreamOutputInterface s) throws StreamIOException
- Writes the object to an io stream (TargetStream).
- Parameters:
- s - is the stream the object is written to
- Returns:
- void
- Throws: StreamIOException
- if write fails.
- See Also:
- readObject
myStreamSize
public int myStreamSize() throws StreamIOException
- Calculate size of this object when writeing it to TargetStream.
- Throws: StreamIOException
- if TargetStream threw an error.
All Packages Class Hierarchy This Package Previous Next Index