public static enum PointOfInterestManager.Status extends java.lang.Enum<PointOfInterestManager.Status>
Enum Constant and Description |
---|
ANY |
HAS_SPACE |
IS_OCCUPIED |
Modifier and Type | Field and Description |
---|---|
private java.util.function.Predicate<? super PointOfInterest> |
test |
Modifier and Type | Method and Description |
---|---|
java.util.function.Predicate<? super PointOfInterest> |
getTest() |
static PointOfInterestManager.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PointOfInterestManager.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointOfInterestManager.Status HAS_SPACE
public static final PointOfInterestManager.Status IS_OCCUPIED
public static final PointOfInterestManager.Status ANY
private final java.util.function.Predicate<? super PointOfInterest> test
public static PointOfInterestManager.Status[] values()
for (PointOfInterestManager.Status c : PointOfInterestManager.Status.values()) System.out.println(c);
public static PointOfInterestManager.Status valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.util.function.Predicate<? super PointOfInterest> getTest()