public static enum ResourcePermission.Target extends Enum<ResourcePermission.Target>
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static ResourcePermission.Target |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourcePermission.Target[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourcePermission.Target ALL
public static final ResourcePermission.Target DISK
public static final ResourcePermission.Target GATEWAY
public static final ResourcePermission.Target QUERY
public static final ResourcePermission.Target DEPLOY
public static ResourcePermission.Target[] values()
for (ResourcePermission.Target c : ResourcePermission.Target.values()) System.out.println(c);
public static ResourcePermission.Target 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 nullpublic String getName()