public static enum SpatialRule.Access extends Enum<SpatialRule.Access>
Enum Constant and Description |
---|
CONDITIONAL |
NO |
YES |
Modifier and Type | Method and Description |
---|---|
static SpatialRule.Access |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpatialRule.Access[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpatialRule.Access YES
public static final SpatialRule.Access CONDITIONAL
public static final SpatialRule.Access NO
public static SpatialRule.Access[] values()
for (SpatialRule.Access c : SpatialRule.Access.values()) System.out.println(c);
public static SpatialRule.Access 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 © 2012–2019. All rights reserved.