public enum Monotonicity extends java.lang.Enum<Monotonicity>
| Enum Constant and Description |
|---|
ANTITONE |
INVALID |
MONOTONE |
NONMONOTONE |
| Modifier and Type | Method and Description |
|---|---|
static Monotonicity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Monotonicity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Monotonicity MONOTONE
public static final Monotonicity ANTITONE
public static final Monotonicity NONMONOTONE
public static final Monotonicity INVALID
public static Monotonicity[] values()
for (Monotonicity c : Monotonicity.values()) System.out.println(c);
public static Monotonicity valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null