public enum StabilizationMode extends Enum<StabilizationMode>
| Enum Constant and Description |
|---|
Constant |
Exponential |
| Modifier and Type | Method and Description |
|---|---|
static StabilizationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StabilizationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StabilizationMode Constant
public static final StabilizationMode Exponential
public static StabilizationMode[] values()
for (StabilizationMode c : StabilizationMode.values()) System.out.println(c);
public static StabilizationMode 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 Amazon Web Services, Inc. All Rights Reserved.