public static enum PathingOptions.TIMEAGG extends java.lang.Enum<PathingOptions.TIMEAGG> implements CASActionOptions.EnumValue
Enum Constant and Description |
---|
AVERAGE |
AVG |
MAX |
MAXIMUM |
MEAN |
MIN |
MINIMUM |
Modifier and Type | Method and Description |
---|---|
static PathingOptions.TIMEAGG |
getByValue(java.lang.String value) |
java.lang.String |
getValue() |
static PathingOptions.TIMEAGG |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PathingOptions.TIMEAGG[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathingOptions.TIMEAGG AVERAGE
public static final PathingOptions.TIMEAGG AVG
public static final PathingOptions.TIMEAGG MAX
public static final PathingOptions.TIMEAGG MAXIMUM
public static final PathingOptions.TIMEAGG MEAN
public static final PathingOptions.TIMEAGG MIN
public static final PathingOptions.TIMEAGG MINIMUM
public static PathingOptions.TIMEAGG[] values()
for (PathingOptions.TIMEAGG c : PathingOptions.TIMEAGG.values()) System.out.println(c);
public static PathingOptions.TIMEAGG 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 nullpublic java.lang.String getValue()
getValue
in interface CASActionOptions.EnumValue
public static PathingOptions.TIMEAGG getByValue(java.lang.String value)