public enum DozerEventType extends Enum<DozerEventType>
Enum Constant and Description |
---|
MAPPING_FINISHED |
MAPPING_POST_WRITING_DEST_VALUE |
MAPPING_PRE_WRITING_DEST_VALUE |
MAPPING_STARTED |
Modifier and Type | Method and Description |
---|---|
static DozerEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DozerEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DozerEventType MAPPING_STARTED
public static final DozerEventType MAPPING_PRE_WRITING_DEST_VALUE
public static final DozerEventType MAPPING_POST_WRITING_DEST_VALUE
public static final DozerEventType MAPPING_FINISHED
public static DozerEventType[] values()
for (DozerEventType c : DozerEventType.values()) System.out.println(c);
public static DozerEventType 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 © 2005-2014 dozer. All Rights Reserved.