de.unihalle.informatik.MiToBo.segmentation.basics
Enum MTBSegmentationInterface.SegmentationDimension

java.lang.Object
  extended by java.lang.Enum<MTBSegmentationInterface.SegmentationDimension>
      extended by de.unihalle.informatik.MiToBo.segmentation.basics.MTBSegmentationInterface.SegmentationDimension
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<MTBSegmentationInterface.SegmentationDimension>
Enclosing interface:
MTBSegmentationInterface

public static enum MTBSegmentationInterface.SegmentationDimension
extends java.lang.Enum<MTBSegmentationInterface.SegmentationDimension>

Segmentation dimension datatype.


Enum Constant Summary
dim_2
          2D segmentation data.
dim_3
          3D segmentation data.
 
Method Summary
static MTBSegmentationInterface.SegmentationDimension valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static MTBSegmentationInterface.SegmentationDimension[] 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

dim_2

public static final MTBSegmentationInterface.SegmentationDimension dim_2
2D segmentation data.


dim_3

public static final MTBSegmentationInterface.SegmentationDimension dim_3
3D segmentation data.

Method Detail

valueOf

public static MTBSegmentationInterface.SegmentationDimension 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

values

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

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