@PublicApi public enum ChangeRate extends Enum<ChangeRate>
| Enum Constant and Description |
|---|
HIGH_CHANGE
Indicates that there is a high rate of change.
|
LOW_CHANGE
Indicates that there is a low rate of change.
|
NONE
Indicates that there is no change.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangeRate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeRate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeRate NONE
public static final ChangeRate LOW_CHANGE
public static final ChangeRate HIGH_CHANGE
public static ChangeRate[] values()
for (ChangeRate c : ChangeRate.values()) System.out.println(c);
public static ChangeRate 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 © 2019 Atlassian. All rights reserved.