Package gov.nih.mipav.view.dialogs
Enum ActionMetadata.ImageRequirements
- java.lang.Object
-
- java.lang.Enum<ActionMetadata.ImageRequirements>
-
- gov.nih.mipav.view.dialogs.ActionMetadata.ImageRequirements
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ActionMetadata.ImageRequirements>
- Enclosing interface:
- ActionMetadata
public static enum ActionMetadata.ImageRequirements extends java.lang.Enum<ActionMetadata.ImageRequirements>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COLOR
DATA_BOOLEAN
DATA_BYTE
DATA_COMPLEX
DATA_DCOMPLEX
DATA_DOUBLE
DATA_FLOAT
DATA_INTEGER
DATA_LONG
DATA_SHORT
DATA_UBYTE
DATA_UINTEGER
DATA_USHORT
GRAYSCALE
NDIM_2
NDIM_3
NDIM_4
NDIM_5
NDIM_6
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
description
-
Constructor Summary
Constructors Modifier Constructor Description private
ImageRequirements(java.lang.String desc)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActionMetadata.ImageRequirements
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ActionMetadata.ImageRequirements[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NDIM_2
public static final ActionMetadata.ImageRequirements NDIM_2
-
NDIM_3
public static final ActionMetadata.ImageRequirements NDIM_3
-
NDIM_4
public static final ActionMetadata.ImageRequirements NDIM_4
-
NDIM_5
public static final ActionMetadata.ImageRequirements NDIM_5
-
NDIM_6
public static final ActionMetadata.ImageRequirements NDIM_6
-
COLOR
public static final ActionMetadata.ImageRequirements COLOR
-
GRAYSCALE
public static final ActionMetadata.ImageRequirements GRAYSCALE
-
DATA_BOOLEAN
public static final ActionMetadata.ImageRequirements DATA_BOOLEAN
-
DATA_BYTE
public static final ActionMetadata.ImageRequirements DATA_BYTE
-
DATA_DOUBLE
public static final ActionMetadata.ImageRequirements DATA_DOUBLE
-
DATA_FLOAT
public static final ActionMetadata.ImageRequirements DATA_FLOAT
-
DATA_INTEGER
public static final ActionMetadata.ImageRequirements DATA_INTEGER
-
DATA_LONG
public static final ActionMetadata.ImageRequirements DATA_LONG
-
DATA_SHORT
public static final ActionMetadata.ImageRequirements DATA_SHORT
-
DATA_UBYTE
public static final ActionMetadata.ImageRequirements DATA_UBYTE
-
DATA_UINTEGER
public static final ActionMetadata.ImageRequirements DATA_UINTEGER
-
DATA_USHORT
public static final ActionMetadata.ImageRequirements DATA_USHORT
-
DATA_COMPLEX
public static final ActionMetadata.ImageRequirements DATA_COMPLEX
-
DATA_DCOMPLEX
public static final ActionMetadata.ImageRequirements DATA_DCOMPLEX
-
-
Method Detail
-
values
public static ActionMetadata.ImageRequirements[] 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 (ActionMetadata.ImageRequirements c : ActionMetadata.ImageRequirements.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionMetadata.ImageRequirements 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
-
-