public static enum ResourceClaim.State extends Enum<ResourceClaim.State>
| Enum Constant and Description |
|---|
CLAIM_RELINQUISHED |
HAS_CLAIM |
UNCLAIMED |
| Modifier and Type | Method and Description |
|---|---|
static ResourceClaim.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceClaim.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceClaim.State UNCLAIMED
public static final ResourceClaim.State HAS_CLAIM
public static final ResourceClaim.State CLAIM_RELINQUISHED
public static ResourceClaim.State[] values()
for (ResourceClaim.State c : ResourceClaim.State.values()) System.out.println(c);
public static ResourceClaim.State 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 © 2014–2017 Lable. All rights reserved.