public enum DimensionOrder extends Enum<DimensionOrder> implements Enumeration
Enum Constant and Description |
---|
XYCTZ |
XYCZT |
XYTCZ |
XYTZC |
XYZCT |
XYZTC |
Modifier and Type | Method and Description |
---|---|
static DimensionOrder |
fromString(String value) |
String |
getValue() |
String |
toString() |
static DimensionOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DimensionOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DimensionOrder XYZCT
public static final DimensionOrder XYZTC
public static final DimensionOrder XYCTZ
public static final DimensionOrder XYCZT
public static final DimensionOrder XYTCZ
public static final DimensionOrder XYTZC
private final String value
public static DimensionOrder[] values()
for (DimensionOrder c : DimensionOrder.values()) System.out.println(c);
public static DimensionOrder valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static DimensionOrder fromString(String value) throws EnumerationException
EnumerationException
public String getValue()
public String toString()
toString
in class Enum<DimensionOrder>
Copyright © 2016 Open Microscopy Environment