public enum Binning extends Enum<Binning> implements Enumeration
Enum Constant and Description |
---|
EIGHTBYEIGHT
8×8 binning.
|
FOURBYFOUR
4×4 binning.
|
ONEBYONE
No binning.
|
OTHER
Other binning value.
|
TWOBYTWO
2×2 binning.
|
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 ONEBYONE
public static final Binning TWOBYTWO
public static final Binning FOURBYFOUR
public static final Binning EIGHTBYEIGHT
public static final Binning OTHER
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 © 2006–2017 Open Microscopy Environment. All rights reserved.