public enum ValidateUnwrappedValue extends Enum<ValidateUnwrappedValue>
Enum Constant and Description |
---|
DEFAULT
Respects the default behavior of the
ValueExtractor . |
NO
The value is not unwrapped before validation.
|
YES
The value is unwrapped before validation.
|
Modifier and Type | Method and Description |
---|---|
static ValidateUnwrappedValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidateUnwrappedValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidateUnwrappedValue DEFAULT
ValueExtractor
.public static final ValidateUnwrappedValue YES
public static final ValidateUnwrappedValue NO
public static ValidateUnwrappedValue[] values()
for (ValidateUnwrappedValue c : ValidateUnwrappedValue.values()) System.out.println(c);
public static ValidateUnwrappedValue 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 nullCopyright © 2007-2017 Red Hat Inc. All Rights Reserved. Released under the Apache Software License 2.0.