com.eurotech.framework.protocol.modbus
Class ProtocolPrimitiveDataTypes

java.lang.Object
  extended by com.eurotech.framework.protocol.modbus.ProtocolPrimitiveDataTypes

public class ProtocolPrimitiveDataTypes
extends Object

This class is used to enumerate the Java primitive data types.

Author:
matt.demaree

Field Summary
static String TYPE_BOOLEAN
          a primitive data type of boolean (1 bit)
static String TYPE_BYTE
          a primitive data type of byte (8 bits)
static String TYPE_CHAR
          a primitive data type of character (8 bits)
static String TYPE_CLASS
          something other than one of the primitive data types
static String TYPE_DOUBLE
          a primitive data type of 64 bit floating point
static String TYPE_FLOAT
          a primitive data type of 32 bit floating point
static String TYPE_INT
          a primitive data type of int (32 bits)
static String TYPE_LONG
          a primitive data type of long (64 bits)
static String TYPE_SHORT
          a primitive data type of short int (16 bits)
static String TYPE_UNSIGNED_INT
          a primitive data type of long, limited to the range 0 to 4294967295 inclusive
static String TYPE_UNSIGNED_SHORT
          a primitive data type of int, limited to the range 0 to 65535 inclusive
static String TYPE_VOID
          defined for completeness, typically never used
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TYPE_VOID

public static final String TYPE_VOID
defined for completeness, typically never used

See Also:
Constant Field Values

TYPE_BOOLEAN

public static final String TYPE_BOOLEAN
a primitive data type of boolean (1 bit)

See Also:
Constant Field Values

TYPE_CHAR

public static final String TYPE_CHAR
a primitive data type of character (8 bits)

See Also:
Constant Field Values

TYPE_BYTE

public static final String TYPE_BYTE
a primitive data type of byte (8 bits)

See Also:
Constant Field Values

TYPE_SHORT

public static final String TYPE_SHORT
a primitive data type of short int (16 bits)

See Also:
Constant Field Values

TYPE_UNSIGNED_SHORT

public static final String TYPE_UNSIGNED_SHORT
a primitive data type of int, limited to the range 0 to 65535 inclusive

See Also:
Constant Field Values

TYPE_INT

public static final String TYPE_INT
a primitive data type of int (32 bits)

See Also:
Constant Field Values

TYPE_UNSIGNED_INT

public static final String TYPE_UNSIGNED_INT
a primitive data type of long, limited to the range 0 to 4294967295 inclusive

See Also:
Constant Field Values

TYPE_LONG

public static final String TYPE_LONG
a primitive data type of long (64 bits)

See Also:
Constant Field Values

TYPE_FLOAT

public static final String TYPE_FLOAT
a primitive data type of 32 bit floating point

See Also:
Constant Field Values

TYPE_DOUBLE

public static final String TYPE_DOUBLE
a primitive data type of 64 bit floating point

See Also:
Constant Field Values

TYPE_CLASS

public static final String TYPE_CLASS
something other than one of the primitive data types

See Also:
Constant Field Values


Copyright © 2013. All Rights Reserved.