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
(package private)  class com.jniwrapper.AbstractInteger
          Abstract base for integer types with exact (platform-independent) size.
 class BitField
          Represents a bit field for structures.
 class ExternalStringPointer
          This class is specially designed to read a string, which is created externally and its length is unknown beforehand.
 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.
(package private)  class com.jniwrapper.PlatformInteger
          Abstract base class for all integers with platform-dependent size (int, long, short, etc.).
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
UShortInt(IntegerParameter t)
          Constructs a new unsigned short parameter.
ULongInt(IntegerParameter t)
          Constructs a new unsigned long parameter.
UInt8(IntegerParameter value)
          Constructs a new instance with the same value as in the passed IntegerParameter.
UInt64(IntegerParameter value)
           
UInt32(IntegerParameter t)
          Constructs a new 32-bit unsigned parameter.
UInt16(IntegerParameter value)
          Constructs a new instance with the same value as in the passed IntegerParameter.
UInt(IntegerParameter t)
          Constructs a new unsigned (int) parameter.
ShortInt(IntegerParameter t)
          Constructs a new short parameter.
LongInt(IntegerParameter t)
          Constructs a new long parameter.
Int8(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.
Int32(IntegerParameter value)
          Constructs a new instance with the same value as in the passed IntegerParameter.
Int16(IntegerParameter value)
          Constructs a new instance with the same value as in the passed IntegerParameter.
Int(IntegerParameter t)
          Constructs a new int parameter with the same value as in the passed object.