@PublicApi public enum ChangeRate extends java.lang.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(java.lang.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(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 nullCopyright © 2022 Atlassian. All rights reserved.