public enum EventTypes extends Enum<EventTypes>
| Enum Constant and Description |
|---|
MAPPING_FINISHED
Mapper has finished processing |
MAPPING_POST_WRITING_DEST_VALUE
Mapper has written the destination value |
MAPPING_PRE_WRITING_DEST_VALUE
Mapper is about to write the destination value |
MAPPING_STARTED
Mapper has started processing |
| Modifier and Type | Method and Description |
|---|---|
static EventTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTypes MAPPING_STARTED
Mapper has started processingpublic static final EventTypes MAPPING_PRE_WRITING_DEST_VALUE
Mapper is about to write the destination valuepublic static final EventTypes MAPPING_POST_WRITING_DEST_VALUE
Mapper has written the destination valuepublic static final EventTypes MAPPING_FINISHED
Mapper has finished processingpublic static EventTypes[] values()
for (EventTypes c : EventTypes.values()) System.out.println(c);
public static EventTypes 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–2021 dozer. All rights reserved.