public enum ValueEnum extends Enum<ValueEnum>
| Enum Constant and Description |
|---|
ANOTHER_ENUM_VALUE |
ENUM_EXAMPLE |
ENUM_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static ValueEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueEnum ENUM_EXAMPLE
public static final ValueEnum ENUM_VALUE
public static final ValueEnum ANOTHER_ENUM_VALUE
public static ValueEnum[] values()
for (ValueEnum c : ValueEnum.values()) System.out.println(c);
public static ValueEnum 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 © 2022 MuleSoft, Inc.. All rights reserved.