Package com.openinventor.ldm.readers
Enum SoVolumeReader.ReaderTypes
- java.lang.Object
-
- java.lang.Enum<SoVolumeReader.ReaderTypes>
-
- com.openinventor.ldm.readers.SoVolumeReader.ReaderTypes
-
- All Implemented Interfaces:
IntegerValuedEnum
,java.io.Serializable
,java.lang.Comparable<SoVolumeReader.ReaderTypes>
- Enclosing class:
- SoVolumeReader
public static enum SoVolumeReader.ReaderTypes extends java.lang.Enum<SoVolumeReader.ReaderTypes> implements IntegerValuedEnum
Available reader type.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
Returns the integer value of the enum constant.static SoVolumeReader.ReaderTypes
valueOf(int val)
Returns the enum constant of this type with the specified integer valuestatic SoVolumeReader.ReaderTypes
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SoVolumeReader.ReaderTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_READER
public static final SoVolumeReader.ReaderTypes NO_READER
Unknown.
-
AM
public static final SoVolumeReader.ReaderTypes AM
Amira .am.
-
AVS
public static final SoVolumeReader.ReaderTypes AVS
AVS.
-
DICOM
public static final SoVolumeReader.ReaderTypes DICOM
Dicom.
-
GENERIC
public static final SoVolumeReader.ReaderTypes GENERIC
Generic.
-
LDM
public static final SoVolumeReader.ReaderTypes LDM
Open Inventor LDM.
-
MEMORY
public static final SoVolumeReader.ReaderTypes MEMORY
In memory.
-
RASTERSTACK
public static final SoVolumeReader.ReaderTypes RASTERSTACK
Raster Stack.
-
SEGY
public static final SoVolumeReader.ReaderTypes SEGY
Segy.
-
VOL
public static final SoVolumeReader.ReaderTypes VOL
Vol.
-
VOX
public static final SoVolumeReader.ReaderTypes VOX
Vox.
-
TIFF
public static final SoVolumeReader.ReaderTypes TIFF
Tiff.
-
MRC
public static final SoVolumeReader.ReaderTypes MRC
Mrc.
-
-
Method Detail
-
values
public static SoVolumeReader.ReaderTypes[] 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 (SoVolumeReader.ReaderTypes c : SoVolumeReader.ReaderTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoVolumeReader.ReaderTypes 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 namejava.lang.NullPointerException
- if the argument is null
-
valueOf
public static SoVolumeReader.ReaderTypes valueOf(int val)
Returns the enum constant of this type with the specified integer value- Returns:
- the enum constant of this type with the specified integer value.
-
getValue
public int getValue()
Description copied from interface:IntegerValuedEnum
Returns the integer value of the enum constant.- Specified by:
getValue
in interfaceIntegerValuedEnum
- Returns:
- the integer value of the enum constant.
-
-