Package gov.nih.mipav.model.algorithms
Enum SIFT3D.im_format
- java.lang.Object
-
- java.lang.Enum<SIFT3D.im_format>
-
- gov.nih.mipav.model.algorithms.SIFT3D.im_format
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SIFT3D.im_format>
- Enclosing class:
- SIFT3D
private static enum SIFT3D.im_format extends java.lang.Enum<SIFT3D.im_format>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
im_format()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SIFT3D.im_format
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SIFT3D.im_format[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANALYZE
public static final SIFT3D.im_format ANALYZE
-
DICOM
public static final SIFT3D.im_format DICOM
-
DIRECTORY
public static final SIFT3D.im_format DIRECTORY
-
NIFTI
public static final SIFT3D.im_format NIFTI
-
UNKNOWN
public static final SIFT3D.im_format UNKNOWN
-
FILE_ERROR
public static final SIFT3D.im_format FILE_ERROR
-
-
Method Detail
-
values
public static SIFT3D.im_format[] 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 (SIFT3D.im_format c : SIFT3D.im_format.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SIFT3D.im_format 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
-
-