public enum GammaMethod extends Enum<GammaMethod>
| Enum Constant and Description |
|---|
linear |
multiply |
none |
power |
threshold |
| Modifier and Type | Method and Description |
|---|---|
static GammaMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GammaMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GammaMethod power
public static final GammaMethod linear
public static final GammaMethod none
public static final GammaMethod threshold
public static final GammaMethod multiply
public static GammaMethod[] values()
for (GammaMethod c : GammaMethod.values()) System.out.println(c);
public static GammaMethod 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 nullCopyright © 2015 Revolution Systems Inc.. All rights reserved.