All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class bea.jolt.SBuffer

java.lang.Object
   |
   +----bea.jolt.SBuffer

public class SBuffer
extends Object
This class provides the constants for the data type. It also provides methods to contruct a field ID, to access data type information from field ID, and to access the unique ordinal number.


Variable Index

 o SBINARY
The constant for the Byte Array (opaque) data type
 o SBYTE
The constant for the Byte (8-bit) data type
 o SDOUBLE
The constant for the Double data type
 o SFLOAT
The constant for the Float data type
 o SINT
The constant for the Int (32-bit) data type
 o SSHORT
The constant for the Short (16-bit) data type
 o SSTRING
The constant for the String data type
 o SSTRUCT
The constant for the Structured Buffer data type

Constructor Index

 o SBuffer()

Method Index

 o GETID(int)
Get the unique ordinal value.
 o ID(int, int)
This method is to construct the 32-bit Field ID.
 o TYPE(int)
Get the data type information from a 32-bit Field ID.

Variables

 o SSHORT
 public static final int SSHORT
The constant for the Short (16-bit) data type

 o SINT
 public static final int SINT
The constant for the Int (32-bit) data type

 o SBYTE
 public static final int SBYTE
The constant for the Byte (8-bit) data type

 o SFLOAT
 public static final int SFLOAT
The constant for the Float data type

 o SDOUBLE
 public static final int SDOUBLE
The constant for the Double data type

 o SSTRING
 public static final int SSTRING
The constant for the String data type

 o SBINARY
 public static final int SBINARY
The constant for the Byte Array (opaque) data type

 o SSTRUCT
 public static final int SSTRUCT
The constant for the Structured Buffer data type

Constructors

 o SBuffer
 public SBuffer()

Methods

 o ID
 public static int ID(int id,
                      int type)
This method is to construct the 32-bit Field ID.

Parameters:
id - a unique 25-bit ordinal number
type - one of the data type constants
Returns:
A 32-bit field id.
 o TYPE
 public static int TYPE(int fieldID)
Get the data type information from a 32-bit Field ID.

Parameters:
fieldID - the 32-bit Field ID
Returns:
the data type information.
 o GETID
 public static int GETID(int fieldID)
Get the unique ordinal value.

Parameters:
fieldID - the 32-bit Field ID
Returns:
the 25-bit ordinal number.

All Packages  Class Hierarchy  This Package  Previous  Next  Index