public enum Binning extends Enum<Binning> implements Enumeration
Enum Constant and Description |
---|
EIGHTXEIGHT |
FOURXFOUR |
ONEXONE |
OTHER |
TWOXTWO |
Modifier and Type | Method and Description |
---|---|
static Binning |
fromString(String value) |
String |
getValue() |
String |
toString() |
static Binning |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Binning[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Binning ONEXONE
public static final Binning TWOXTWO
public static final Binning FOURXFOUR
public static final Binning EIGHTXEIGHT
public static final Binning OTHER
private final String value
public static Binning[] values()
for (Binning c : Binning.values()) System.out.println(c);
public static Binning 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 Binning fromString(String value) throws EnumerationException
EnumerationException
public String getValue()
Copyright © 2016 Open Microscopy Environment