public static enum Places.HidingPlaces extends Enum<Places.HidingPlaces>
| Enum Constant and Description |
|---|
CRAWLSPACE |
HEATING_VENT |
VACUUM |
| Modifier and Type | Method and Description |
|---|---|
static Places.HidingPlaces |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Places.HidingPlaces[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Places.HidingPlaces HEATING_VENT
public static final Places.HidingPlaces VACUUM
public static final Places.HidingPlaces CRAWLSPACE
public static Places.HidingPlaces[] values()
for (Places.HidingPlaces c : Places.HidingPlaces.values()) System.out.println(c);
public static Places.HidingPlaces 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.