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

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

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

The Enum MeasurementUnit.


Enum Constant Summary
ANGSTROMS
          The ANGSTROMS.
CENTIMETERS
          The CENTIMETERS.
DEGREES
          The DEGREES.
HOURS
          The HOURS.
HZ
          The HZ.
INCHES
          The INCHES.
KILOMETERS
          The KILOMETERS.
METERS
          The METERS.
MICROMETERS
          The MICROMETERS.
MICROSEC
          The MICROSEC.
MILES
          The MILES.
MILLIMETERS
          The MILLIMETERS.
MILLISEC
          The MILLISEC.
MINUTES
          The MINUTES.
NANOMETERS
          The NANOMETERS.
NANOSEC
          The NANOSEC.
NULL
          The NULL.
PPM
          The PPM.
RADS
          The RADS.
SECONDS
          The SECONDS.
UNKNOWN_MEASURE
          The UNKNOW n_ measure.
 
Method Summary
static ImageHeader.MeasurementUnit valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ImageHeader.MeasurementUnit[] 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

NULL

public static final ImageHeader.MeasurementUnit NULL
The NULL.


UNKNOWN_MEASURE

public static final ImageHeader.MeasurementUnit UNKNOWN_MEASURE
The UNKNOW n_ measure.


INCHES

public static final ImageHeader.MeasurementUnit INCHES
The INCHES.


CENTIMETERS

public static final ImageHeader.MeasurementUnit CENTIMETERS
The CENTIMETERS.


ANGSTROMS

public static final ImageHeader.MeasurementUnit ANGSTROMS
The ANGSTROMS.


NANOMETERS

public static final ImageHeader.MeasurementUnit NANOMETERS
The NANOMETERS.


MICROMETERS

public static final ImageHeader.MeasurementUnit MICROMETERS
The MICROMETERS.


MILLIMETERS

public static final ImageHeader.MeasurementUnit MILLIMETERS
The MILLIMETERS.


METERS

public static final ImageHeader.MeasurementUnit METERS
The METERS.


KILOMETERS

public static final ImageHeader.MeasurementUnit KILOMETERS
The KILOMETERS.


MILES

public static final ImageHeader.MeasurementUnit MILES
The MILES.


NANOSEC

public static final ImageHeader.MeasurementUnit NANOSEC
The NANOSEC.


MICROSEC

public static final ImageHeader.MeasurementUnit MICROSEC
The MICROSEC.


MILLISEC

public static final ImageHeader.MeasurementUnit MILLISEC
The MILLISEC.


SECONDS

public static final ImageHeader.MeasurementUnit SECONDS
The SECONDS.


MINUTES

public static final ImageHeader.MeasurementUnit MINUTES
The MINUTES.


HOURS

public static final ImageHeader.MeasurementUnit HOURS
The HOURS.


HZ

public static final ImageHeader.MeasurementUnit HZ
The HZ.


PPM

public static final ImageHeader.MeasurementUnit PPM
The PPM.


RADS

public static final ImageHeader.MeasurementUnit RADS
The RADS.


DEGREES

public static final ImageHeader.MeasurementUnit DEGREES
The DEGREES.

Method Detail

values

public static ImageHeader.MeasurementUnit[] 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.MeasurementUnit c : ImageHeader.MeasurementUnit.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.MeasurementUnit 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