public static enum ARXConfiguration.Monotonicity extends java.lang.Enum<ARXConfiguration.Monotonicity>
| Enum Constant and Description |
|---|
FULL
Fully monotonic
|
NONE
Non-monotonic
|
PARTIAL
Partially monotonic
|
| Modifier and Type | Method and Description |
|---|---|
static ARXConfiguration.Monotonicity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ARXConfiguration.Monotonicity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ARXConfiguration.Monotonicity FULL
public static final ARXConfiguration.Monotonicity PARTIAL
public static final ARXConfiguration.Monotonicity NONE
public static ARXConfiguration.Monotonicity[] values()
for (ARXConfiguration.Monotonicity c : ARXConfiguration.Monotonicity.values()) System.out.println(c);
public static ARXConfiguration.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