@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum ComparisonMethodType extends Enum<ComparisonMethodType>
Enum Constant and Description |
---|
DIFF |
DIFF_AS_PERC |
MOVING_AVERAGE |
PERC_DIFF |
PERCENT_OF_TOTAL |
POP_CURRENT_DIFF |
POP_CURRENT_DIFF_AS_PERC |
POP_OVERTIME_DIFF |
POP_OVERTIME_DIFF_AS_PERC |
RUNNING_SUM |
Modifier and Type | Method and Description |
---|---|
static ComparisonMethodType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static ComparisonMethodType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonMethodType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonMethodType DIFF
public static final ComparisonMethodType PERC_DIFF
public static final ComparisonMethodType DIFF_AS_PERC
public static final ComparisonMethodType POP_CURRENT_DIFF_AS_PERC
public static final ComparisonMethodType POP_CURRENT_DIFF
public static final ComparisonMethodType POP_OVERTIME_DIFF_AS_PERC
public static final ComparisonMethodType POP_OVERTIME_DIFF
public static final ComparisonMethodType PERCENT_OF_TOTAL
public static final ComparisonMethodType RUNNING_SUM
public static final ComparisonMethodType MOVING_AVERAGE
public static ComparisonMethodType[] values()
for (ComparisonMethodType c : ComparisonMethodType.values()) System.out.println(c);
public static ComparisonMethodType 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<ComparisonMethodType>
public static ComparisonMethodType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.