public enum BlockTypes extends java.lang.Enum<BlockTypes>
Java class for blockTypes.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="blockTypes">
<restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
<enumeration value="inheritance"/>
<enumeration value="propagation"/>
<enumeration value="none"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
INHERITANCE
The resource does not inherit role mappings from its parent, i.e.
|
NONE
Remove all role blocks on the specified resource.
|
PROPAGATION
The resource does not propagate role mappings to its children, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static BlockTypes |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static BlockTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockTypes INHERITANCE
public static final BlockTypes PROPAGATION
public static final BlockTypes NONE
public static BlockTypes[] values()
for (BlockTypes c : BlockTypes.values()) System.out.println(c);
public static BlockTypes 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.lang.String value()
public static BlockTypes fromValue(java.lang.String v)