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