public static enum Threshold.Type extends Enum<Threshold.Type>
| Modifier and Type | Method and Description |
|---|---|
static Threshold.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Threshold.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Threshold.Type DIRECT
public static final Threshold.Type INVERSE
public static Threshold.Type[] values()
for (Threshold.Type c : Threshold.Type.values()) System.out.println(c);
public static Threshold.Type 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 © 2013–2021 Sébastien Bigaret, Patrick Meyer. All rights reserved.