Uses of Interface
com.jniwrapper.IntegerParameter

Packages that use IntegerParameter
com.jniwrapper The com.jniwrapper package contains classes that allow calling native functions from Java(TM) code. 
 

Uses of IntegerParameter in com.jniwrapper
 

Classes in com.jniwrapper that implement IntegerParameter
 class BitField
          Represents a bit field for structures.
 class ExternalStringPointer
          This class is designed for reading externally allocated strings.
 class Int
          C-like int value.
 class Int16
          Represents a 16-bit integer value and type.
 class Int32
          Represents a 32-bit integer value and type.
 class Int64
          Represents a 64-bit integer value and type.
 class Int8
          Represents an 8-bit integer (byte) value and type.
 class IntBool
          This class represents four bytes boolean type.
 class LongInt
          C-like long value.
static class Pointer.Void
          Represents a void *.
 class ShortInt
          C-like short value.
 class UInt
          C-like unsigned int value.
 class UInt16
          Represents a 16-bit unsigned integer value and type.
 class UInt32
          Represents a 32-bit unsigned integer value and type.
 class UInt64
          Represents 64-bit unsigned integer type specially designed to support UINT64 native type.
 class UInt8
          Represents an 8-bit unsigned integer value and type.
 class ULongInt
          C-like unsigned long value.
 class UShortInt
          C-like unsigned short value.
 

Constructors in com.jniwrapper with parameters of type IntegerParameter
Int(IntegerParameter t)
          Constructs a new int parameter with the same value as in the passed object.
Int16(IntegerParameter value)
          Constructs a new instance with the same value as in the passed IntegerParameter.
Int32(IntegerParameter value)
          Constructs a new instance with the same value as in the passed IntegerParameter.
Int64(IntegerParameter value)
          Constructs a new 64-bit integer parameter.
Int8(IntegerParameter value)
          Constructs a new instance with the same value as in the passed IntegerParameter.
LongInt(IntegerParameter t)
          Constructs a new long parameter.
ShortInt(IntegerParameter t)
          Constructs a new short parameter.
UInt(IntegerParameter t)
          Constructs a new unsigned (int) parameter.
UInt16(IntegerParameter value)
          Constructs a new instance with the same value as in the passed IntegerParameter.
UInt32(IntegerParameter t)
          Constructs a new 32-bit unsigned parameter.
UInt64(IntegerParameter value)
           
UInt8(IntegerParameter value)
          Constructs a new instance with the same value as in the passed IntegerParameter.
ULongInt(IntegerParameter t)
          Constructs a new unsigned long parameter.
UShortInt(IntegerParameter t)
          Constructs a new unsigned short parameter.