public static enum CustomPeriodicTest.Operator extends Enum<CustomPeriodicTest.Operator>
Enum Constant and Description |
---|
EQUALS |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
NONE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static CustomPeriodicTest.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomPeriodicTest.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomPeriodicTest.Operator NONE
public static final CustomPeriodicTest.Operator EQUALS
public static final CustomPeriodicTest.Operator GREATER_THAN_OR_EQUAL_TO
public static final CustomPeriodicTest.Operator GREATER_THAN
public static final CustomPeriodicTest.Operator LESS_THAN_OR_EQUAL_TO
public static final CustomPeriodicTest.Operator LESS_THAN
public static CustomPeriodicTest.Operator[] values()
for (CustomPeriodicTest.Operator c : CustomPeriodicTest.Operator.values()) System.out.println(c);
public static CustomPeriodicTest.Operator 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 nullpublic String toString()
toString
in class Enum<CustomPeriodicTest.Operator>
Copyright © 2019 University of Waikato, Hamilton, NZ. All Rights Reserved.