public enum EventType extends Enum<EventType>
This enum describes possible progress event types that can occurred during image processing operations
Enum Constant and Description |
---|
Finalization
The finalization of the operation
|
Initialization
The initialization of the operation
|
PreProcessing
The pre processing
|
Processing
The processing
|
RelativeProgress
Relative progress of current stage of the operation processing
|
StageChange
The next stage of the operation started
|
Modifier and Type | Method and Description |
---|---|
static EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType RelativeProgress
Relative progress of current stage of the operation processing
public static final EventType StageChange
The next stage of the operation started
public static final EventType Initialization
The initialization of the operation
public static final EventType PreProcessing
The pre processing
public static final EventType Processing
The processing
public static final EventType Finalization
The finalization of the operation
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType 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 null