Class semper.certificate.LongObject
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class semper.certificate.LongObject

java.lang.Object
   |
   +----semper.certificate.LongObject

public class LongObject
extends Object
implements Streamable

Variable Index

 o _a

Constructor Index

 o LongObject()
 o LongObject(long)
Create a Long object, which is a Long that can be transferred via streams.

Method Index

 o myStreamSize()
Calculate size of this object when written to Targetstream.
 o readObject(StreamInputInterface)
Reads the object from an io stream (TargetStream).
 o value()
Retrieve actual value of the Long Object
 o writeObject(StreamOutputInterface)
Writes the object to an io stream (TargetStream).

Variables

 o _a
  public long _a

Constructors

 o LongObject
  public LongObject(long b)
Create a Long object, which is a Long that can be transferred via streams.
Parameters:
Long - value, that is to be transferred.
 o LongObject
  public LongObject()

Methods

 o value
  public long value()
Retrieve actual value of the Long Object
 o 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 object couldn't be read from s.
See Also:
writeObject
 o 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 Object couldn't be written to TargetStream.
See Also:
readObject
 o myStreamSize
  public int myStreamSize() throws StreamIOException
Calculate size of this object when written to Targetstream.
Throws: StreamIOException
if size couldn't get calculated.

All Packages  Class Hierarchy  This Package  Previous  Next  Index