public enum EntityNotFoundStrategy extends Enum<EntityNotFoundStrategy >
| Enum Constant and Description |
|---|
IGNORE
|
LOG_DEBUG
|
LOG_INFO
|
LOG_WARN
|
THROW
|
| Modifier and Type | Method and Description |
|---|---|
static EntityNotFoundStrategy |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static EntityNotFoundStrategy |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final EntityNotFoundStrategyIGNORE
public static final EntityNotFoundStrategyLOG_WARN
public static final EntityNotFoundStrategyLOG_INFO
public static final EntityNotFoundStrategyLOG_DEBUG
public static final EntityNotFoundStrategyTHROW
public static EntityNotFoundStrategy[] values()
for (EntityNotFoundStrategy c : EntityNotFoundStrategy.values()) System.out.println(c);
public static EntityNotFoundStrategyvalueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null