public enum ActionWhenNoObjectFound extends java.lang.Enum<ActionWhenNoObjectFound>
| Enum Constant and Description |
|---|
CREATE
Create a domain entity to map to.
|
DEFAULT
Use the value for "If no object was found" that is specified in the import mapping.
|
ERROR
Explicitly stop parsing and throw an error.
|
IGNORE
Don't map this element and continue parsing.
|
| Modifier and Type | Method and Description |
|---|---|
static ActionWhenNoObjectFound |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionWhenNoObjectFound[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionWhenNoObjectFound DEFAULT
public static final ActionWhenNoObjectFound CREATE
public static final ActionWhenNoObjectFound IGNORE
public static final ActionWhenNoObjectFound ERROR
public static ActionWhenNoObjectFound[] values()
for (ActionWhenNoObjectFound c : ActionWhenNoObjectFound.values()) System.out.println(c);
public static ActionWhenNoObjectFound valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null