Sharkysoft home

lava.konst
Class SHORT

java.lang.Object
  |
  +--lava.konst.SHORT

public class SHORT
extends java.lang.Object

Short constants.

Details: SHORT is a collection of short constants.

Since:
1999.05.13

Field Summary
static short MAX_SBYTE
          0x007f.
static short MAX_SSHORT
          0x7fff.
static short MAX_UBYTE
          0x00ff.
static short MAX_USHORT
          0xffff.
static short MIN_SBYTE
          0x0080.
static short MIN_SSHORT
          0x8000.
static short MIN_UBYTE
          0x0000.
static short MIN_USHORT
          0x0000.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MAX_SSHORT

public static final short MAX_SSHORT
0x7fff.

Details: Maximum signed short value.


MIN_SSHORT

public static final short MIN_SSHORT
0x8000.

Details: Minimum signed short value.


MAX_USHORT

public static final short MAX_USHORT
0xffff.

Details: Maximum unsigned short value.


MIN_USHORT

public static final short MIN_USHORT
0x0000.

Details: Minimum unsigned short value.


MAX_SBYTE

public static final short MAX_SBYTE
0x007f.

Details: Maximum signed byte value.


MIN_SBYTE

public static final short MIN_SBYTE
0x0080.

Details: Minimum signed byte value.


MAX_UBYTE

public static final short MAX_UBYTE
0x00ff.

Details: Maximum unsigned byte value.


MIN_UBYTE

public static final short MIN_UBYTE
0x0000.

Details: Minimum unsigned byte value.


Sharkysoft home