public enum ContainerExtract extends Enum<ContainerExtract>
| Enum Constant and Description |
|---|
DEFAULT
If
extractors are defined explicitly, apply those. |
NO
Do not apply any container extractor,
and throw an exception if
extractors are defined explicitly. |
| Modifier and Type | Method and Description |
|---|---|
static ContainerExtract |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerExtract[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerExtract DEFAULT
extractors are defined explicitly, apply those.
Otherwise, automatically and recursively resolve extractors according to the type of the property:
get elements for collections, values for maps, ...public static final ContainerExtract NO
extractors are defined explicitly.public static ContainerExtract[] values()
for (ContainerExtract c : ContainerExtract.values()) System.out.println(c);
public static ContainerExtract 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 © 2006-2020 Red Hat, Inc. and others. Licensed under the GNU Lesser General Public License (LGPL), version 2.1 or later.