public static enum MappingErrorHandler.Impl extends Enum<MappingErrorHandler.Impl> implements MappingErrorHandler
MappingErrorHandler.Impl| Enum Constant and Description |
|---|
SILENT
Silent: ignore invalid entries.
|
THROWING
Throws an exception as soon as a field cannot be mapped.
|
| Modifier and Type | Method and Description |
|---|---|
static MappingErrorHandler.Impl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingErrorHandler.Impl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfhandleErrorpublic static final MappingErrorHandler.Impl SILENT
public static final MappingErrorHandler.Impl THROWING
public static MappingErrorHandler.Impl[] values()
for (MappingErrorHandler.Impl c : MappingErrorHandler.Impl.values()) System.out.println(c);
public static MappingErrorHandler.Impl 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 © 2016–2018 The AuthMe Team. All rights reserved.