public enum EffectType extends Enum<EffectType>
Java class for EffectType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EffectType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Permit"/>
<enumeration value="Deny"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static EffectType |
fromValue(String v) |
String |
value() |
static EffectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EffectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EffectType PERMIT
public static final EffectType DENY
public static EffectType[] values()
for (EffectType c : EffectType.values()) System.out.println(c);
public static EffectType 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 EffectType fromValue(String v)
Copyright © 2012 JBoss, a division of Red Hat, Inc.. All Rights Reserved.