Package ome.formats
Enum Index
- java.lang.Object
-
- java.lang.Enum<Index>
-
- ome.formats.Index
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getValue()
java.lang.String
toString()
static Index
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Index[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN_ANNOTATION_INDEX
public static final Index BOOLEAN_ANNOTATION_INDEX
-
CHANNEL_INDEX
public static final Index CHANNEL_INDEX
-
DATASET_INDEX
public static final Index DATASET_INDEX
-
DETECTOR_INDEX
public static final Index DETECTOR_INDEX
-
DICHROIC_INDEX
public static final Index DICHROIC_INDEX
-
DOUBLE_ANNOTATION_INDEX
public static final Index DOUBLE_ANNOTATION_INDEX
-
EXPERIMENT_INDEX
public static final Index EXPERIMENT_INDEX
-
EXPERIMENTER_INDEX
public static final Index EXPERIMENTER_INDEX
-
FILE_ANNOTATION_INDEX
public static final Index FILE_ANNOTATION_INDEX
-
FILTER_INDEX
public static final Index FILTER_INDEX
-
FILTER_SET_INDEX
public static final Index FILTER_SET_INDEX
-
FOLDER_INDEX
public static final Index FOLDER_INDEX
-
GROUP_INDEX
public static final Index GROUP_INDEX
-
IMAGE_INDEX
public static final Index IMAGE_INDEX
-
INSTRUMENT_INDEX
public static final Index INSTRUMENT_INDEX
-
LIGHT_SOURCE_INDEX
public static final Index LIGHT_SOURCE_INDEX
-
LIGHT_SOURCE_SETTINGS_INDEX
public static final Index LIGHT_SOURCE_SETTINGS_INDEX
-
LIST_ANNOTATION_INDEX
public static final Index LIST_ANNOTATION_INDEX
-
LONG_ANNOTATION_INDEX
public static final Index LONG_ANNOTATION_INDEX
-
MAP_ANNOTATION_INDEX
public static final Index MAP_ANNOTATION_INDEX
-
MICROBEAM_MANIPULATION_INDEX
public static final Index MICROBEAM_MANIPULATION_INDEX
-
OBJECTIVE_INDEX
public static final Index OBJECTIVE_INDEX
-
ORIGINAL_FILE_INDEX
public static final Index ORIGINAL_FILE_INDEX
-
PLANE_INDEX
public static final Index PLANE_INDEX
-
PLATE_ACQUISITION_INDEX
public static final Index PLATE_ACQUISITION_INDEX
-
PLATE_INDEX
public static final Index PLATE_INDEX
-
PROJECT_INDEX
public static final Index PROJECT_INDEX
-
REAGENT_INDEX
public static final Index REAGENT_INDEX
-
ROI_INDEX
public static final Index ROI_INDEX
-
SCREEN_INDEX
public static final Index SCREEN_INDEX
-
SHAPE_INDEX
public static final Index SHAPE_INDEX
-
TAG_ANNOTATION_INDEX
public static final Index TAG_ANNOTATION_INDEX
-
TERM_ANNOTATION_INDEX
public static final Index TERM_ANNOTATION_INDEX
-
COMMENT_ANNOTATION_INDEX
public static final Index COMMENT_ANNOTATION_INDEX
-
TIMESTAMP_ANNOTATION_INDEX
public static final Index TIMESTAMP_ANNOTATION_INDEX
-
WELL_INDEX
public static final Index WELL_INDEX
-
WELL_SAMPLE_INDEX
public static final Index WELL_SAMPLE_INDEX
-
XML_ANNOTATION_INDEX
public static final Index XML_ANNOTATION_INDEX
-
-
Method Detail
-
values
public static Index[] 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 (Index c : Index.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Index 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
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Index>
-
-