public static enum EntryFactory.Wrap extends Enum<EntryFactory.Wrap>
Enum Constant and Description |
---|
STORE
Store values in the context without wrapping
|
WRAP_ALL
Wrap any value
|
WRAP_NON_NULL
Only wrap non-null values
|
Modifier and Type | Method and Description |
---|---|
static EntryFactory.Wrap |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntryFactory.Wrap[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntryFactory.Wrap STORE
public static final EntryFactory.Wrap WRAP_ALL
public static final EntryFactory.Wrap WRAP_NON_NULL
public static EntryFactory.Wrap[] values()
for (EntryFactory.Wrap c : EntryFactory.Wrap.values()) System.out.println(c);
public static EntryFactory.Wrap 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 © 2024 JBoss, a division of Red Hat. All rights reserved.