Class semper.certificate.ShortObject
All Packages Class Hierarchy This Package Previous Next Index
Class semper.certificate.ShortObject
java.lang.Object
|
+----semper.certificate.ShortObject
- public class ShortObject
- extends Object
- implements Streamable
-
_a
-
-
ShortObject()
-
-
ShortObject(short)
- Create a Short object, which is a short that can be transferred
via streams.
-
myStreamSize()
- Calculate size of object when written to TargetStream.
-
readObject(StreamInputInterface)
- Reads the object from an io stream (TargetStream).
-
value()
- Retrieve actual value of the Short Object
-
writeObject(StreamOutputInterface)
- Writes the object to an io stream (TargetStream).
_a
public short _a
ShortObject
public ShortObject(short b)
- Create a Short object, which is a short that can be transferred
via streams.
- Parameters:
- Short - value, that is to be transferred.
ShortObject
public ShortObject()
value
public short value()
- Retrieve actual value of the Short 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 failed.
- See Also:
- readObject
myStreamSize
public int myStreamSize()
- Calculate size of object when written to TargetStream.
All Packages Class Hierarchy This Package Previous Next Index