edu.jhu.ece.iacl.jist.structures.image
Enum ImageHeader.AxisOrientation

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

public static enum ImageHeader.AxisOrientation
extends java.lang.Enum<ImageHeader.AxisOrientation>

The Enum AxisOrientation.


Enum Constant Summary
A2P_TYPE
          The A2 p_ type.
I2S_TYPE
          The I2 s_ type.
L2R_TYPE
          The L2 r_ type.
P2A_TYPE
          The P2 a_ type.
R2L_TYPE
          The R2 l_ type.
S2I_TYPE
          The S2 i_ type.
UNKNOWN
          The UNKNOWN.
 
Method Summary
static ImageHeader.AxisOrientation valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ImageHeader.AxisOrientation[] 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

UNKNOWN

public static final ImageHeader.AxisOrientation UNKNOWN
The UNKNOWN.


R2L_TYPE

public static final ImageHeader.AxisOrientation R2L_TYPE
The R2 l_ type.


L2R_TYPE

public static final ImageHeader.AxisOrientation L2R_TYPE
The L2 r_ type.


P2A_TYPE

public static final ImageHeader.AxisOrientation P2A_TYPE
The P2 a_ type.


A2P_TYPE

public static final ImageHeader.AxisOrientation A2P_TYPE
The A2 p_ type.


I2S_TYPE

public static final ImageHeader.AxisOrientation I2S_TYPE
The I2 s_ type.


S2I_TYPE

public static final ImageHeader.AxisOrientation S2I_TYPE
The S2 i_ type.

Method Detail

values

public static ImageHeader.AxisOrientation[] 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 (ImageHeader.AxisOrientation c : ImageHeader.AxisOrientation.values())
    System.out.println(c);

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

valueOf

public static ImageHeader.AxisOrientation 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