public static enum Input.RangeRelation extends Enum<Input.RangeRelation>
| Enum Constant and Description |
|---|
CONTAINED_IN |
CONTAINS |
EQUALS |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static Input.RangeRelation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Input.RangeRelation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Input.RangeRelation EQUALS
public static final Input.RangeRelation CONTAINS
public static final Input.RangeRelation CONTAINED_IN
public static final Input.RangeRelation NONE
public static Input.RangeRelation[] values()
for (Input.RangeRelation c : Input.RangeRelation.values()) System.out.println(c);
public static Input.RangeRelation 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 © 2017. All rights reserved.