org.jnbt
Class NBTConstants

java.lang.Object
  extended by org.jnbt.NBTConstants

public final class NBTConstants
extends Object

A class which holds constant values.

Author:
Graham Edgecombe

Field Summary
static Charset CHARSET
          The character set used by NBT (UTF-8).
static int TYPE_BYTE
          Tag type constants.
static int TYPE_BYTE_ARRAY
          Tag type constants.
static int TYPE_COMPOUND
          Tag type constants.
static int TYPE_DOUBLE
          Tag type constants.
static int TYPE_END
          Tag type constants.
static int TYPE_FLOAT
          Tag type constants.
static int TYPE_INT
          Tag type constants.
static int TYPE_LIST
          Tag type constants.
static int TYPE_LONG
          Tag type constants.
static int TYPE_SHORT
          Tag type constants.
static int TYPE_STRING
          Tag type constants.
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CHARSET

public static final Charset CHARSET
The character set used by NBT (UTF-8).


TYPE_END

public static final int TYPE_END
Tag type constants.

See Also:
Constant Field Values

TYPE_BYTE

public static final int TYPE_BYTE
Tag type constants.

See Also:
Constant Field Values

TYPE_SHORT

public static final int TYPE_SHORT
Tag type constants.

See Also:
Constant Field Values

TYPE_INT

public static final int TYPE_INT
Tag type constants.

See Also:
Constant Field Values

TYPE_LONG

public static final int TYPE_LONG
Tag type constants.

See Also:
Constant Field Values

TYPE_FLOAT

public static final int TYPE_FLOAT
Tag type constants.

See Also:
Constant Field Values

TYPE_DOUBLE

public static final int TYPE_DOUBLE
Tag type constants.

See Also:
Constant Field Values

TYPE_BYTE_ARRAY

public static final int TYPE_BYTE_ARRAY
Tag type constants.

See Also:
Constant Field Values

TYPE_STRING

public static final int TYPE_STRING
Tag type constants.

See Also:
Constant Field Values

TYPE_LIST

public static final int TYPE_LIST
Tag type constants.

See Also:
Constant Field Values

TYPE_COMPOUND

public static final int TYPE_COMPOUND
Tag type constants.

See Also:
Constant Field Values