public static enum DataModelMapping.ExceptionHandlingStrategy extends Enum<DataModelMapping.ExceptionHandlingStrategy>
Enum Constant and Description |
---|
FAIL
Raise
IllegalArgumentException on exception. |
IGNORE
Ignores on exception.
|
LOGGING
Logging on exception.
|
Modifier and Type | Method and Description |
---|---|
static DataModelMapping.ExceptionHandlingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataModelMapping.ExceptionHandlingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataModelMapping.ExceptionHandlingStrategy IGNORE
public static final DataModelMapping.ExceptionHandlingStrategy LOGGING
public static final DataModelMapping.ExceptionHandlingStrategy FAIL
IllegalArgumentException
on exception.public static DataModelMapping.ExceptionHandlingStrategy[] values()
for (DataModelMapping.ExceptionHandlingStrategy c : DataModelMapping.ExceptionHandlingStrategy.values()) System.out.println(c);
public static DataModelMapping.ExceptionHandlingStrategy 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 © 2011–2019 Asakusa Framework Team. All rights reserved.