public enum PermissionMode extends Enum<PermissionMode>
Java class for permissionMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="permissionMode"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="set"/> <enumeration value="read"/> </restriction> </simpleType>
Enum Constant and Description |
---|
READ
Reads, but does not apply, the required permission from the current subject.
|
SET
Determines if the current subject has the required permission, and applies it to the defining parent element.
|
Modifier and Type | Method and Description |
---|---|
static PermissionMode |
fromValue(String v) |
String |
value() |
static PermissionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PermissionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PermissionMode SET
public static final PermissionMode READ
public static PermissionMode[] values()
for (PermissionMode c : PermissionMode.values()) System.out.println(c);
public static PermissionMode 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 value()
public static PermissionMode fromValue(String v)
Copyright © 2011–2017 aiticon GmbH. All rights reserved.