public enum DoublePlantType extends Enum<DoublePlantType>
| Enum Constant and Description |
|---|
FERN |
GRASS |
PAEONIA |
ROSE |
SUNFLOWER |
SYRINGA |
| Modifier and Type | Method and Description |
|---|---|
static DoublePlantType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DoublePlantType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DoublePlantType SUNFLOWER
public static final DoublePlantType SYRINGA
public static final DoublePlantType GRASS
public static final DoublePlantType FERN
public static final DoublePlantType ROSE
public static final DoublePlantType PAEONIA
public static DoublePlantType[] values()
for (DoublePlantType c : DoublePlantType.values()) System.out.println(c);
public static DoublePlantType 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 © 2020. All rights reserved.