edu.jhu.ece.iacl.jist.structures.image
Enum VoxelType

java.lang.Object
  extended by java.lang.Enum<VoxelType>
      extended by edu.jhu.ece.iacl.jist.structures.image.VoxelType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VoxelType>

public enum VoxelType
extends java.lang.Enum<VoxelType>

The Enum VoxelType.


Enum Constant Summary
BOOLEAN
           
BYTE
          The BYTE.
COLOR
          The COLOR.
COLOR_FLOAT
          The COLO r_ float.
COLOR_USHORT
          The COLO r_ ushort.
DOUBLE
          The DOUBLE.
FLOAT
          The FLOAT.
INT
          The INT.
LONG
          The LONG.
SHORT
          The SHORT.
UBYTE
          The UBYTE.
UINT
          The UINT.
USHORT
          The USHORT.
VECTORX
          The VECTORX.
 
Method Summary
static VoxelType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VoxelType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BYTE

public static final VoxelType BYTE
The BYTE.


UBYTE

public static final VoxelType UBYTE
The UBYTE.


DOUBLE

public static final VoxelType DOUBLE
The DOUBLE.


FLOAT

public static final VoxelType FLOAT
The FLOAT.


COLOR

public static final VoxelType COLOR
The COLOR.


COLOR_USHORT

public static final VoxelType COLOR_USHORT
The COLO r_ ushort.


COLOR_FLOAT

public static final VoxelType COLOR_FLOAT
The COLO r_ float.


SHORT

public static final VoxelType SHORT
The SHORT.


USHORT

public static final VoxelType USHORT
The USHORT.


INT

public static final VoxelType INT
The INT.


UINT

public static final VoxelType UINT
The UINT.


LONG

public static final VoxelType LONG
The LONG.


BOOLEAN

public static final VoxelType BOOLEAN

VECTORX

public static final VoxelType VECTORX
The VECTORX.

Method Detail

values

public static VoxelType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (VoxelType c : VoxelType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static VoxelType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null