Package com.uc4.api.objects
Enum CurrentTimeCondition.When
- java.lang.Object
-
- java.lang.Enum<CurrentTimeCondition.When>
-
- com.uc4.api.objects.CurrentTimeCondition.When
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CurrentTimeCondition.When>
- Enclosing class:
- CurrentTimeCondition
public static enum CurrentTimeCondition.When extends java.lang.Enum<CurrentTimeCondition.When>
When operator.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CurrentTimeCondition.When
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CurrentTimeCondition.When[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BEFORE
public static final CurrentTimeCondition.When BEFORE
Before.
-
AFTER
public static final CurrentTimeCondition.When AFTER
After.
-
-
Method Detail
-
values
public static CurrentTimeCondition.When[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CurrentTimeCondition.When c : CurrentTimeCondition.When.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CurrentTimeCondition.When valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-