public enum ValidationScope extends Enum<ValidationScope>
Java class for ValidationScope.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ValidationScope"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="All"/> <enumeration value="DataSource"/> <enumeration value="Mapping"/> <enumeration value="LookupTable"/> <enumeration value="Constant"/> <enumeration value="Property"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ALL |
CONSTANT |
DATA_SOURCE |
LOOKUP_TABLE |
MAPPING |
PROPERTY |
Modifier and Type | Method and Description |
---|---|
static ValidationScope |
fromValue(String v) |
String |
value() |
static ValidationScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationScope ALL
public static final ValidationScope DATA_SOURCE
public static final ValidationScope MAPPING
public static final ValidationScope LOOKUP_TABLE
public static final ValidationScope CONSTANT
public static final ValidationScope PROPERTY
public static ValidationScope[] values()
for (ValidationScope c : ValidationScope.values()) System.out.println(c);
public static ValidationScope 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 ValidationScope fromValue(String v)
Copyright © 2018 JBoss by Red Hat. All rights reserved.