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