public enum ValidationScope extends Enum<ValidationScope>
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 © 2020 JBoss by Red Hat. All rights reserved.