public enum EventConfirmationType extends Enum<EventConfirmationType>
AbstractProductProcessITextEvent
confirming.
Enum Constant and Description |
---|
ON_CLOSE
The successful execution of the process associated with the event will be confirmed during the end of processing.
|
ON_DEMAND
The successful execution of the process associated with the event should be confirmed by the second invocation of the EventManager.onEvent(IEvent) method.
|
UNCONFIRMABLE
The process associated with the event shouldn't be confirmed.
|
Modifier and Type | Method and Description |
---|---|
static EventConfirmationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventConfirmationType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final EventConfirmationType ON_DEMAND
EventManager.onEvent(IEvent)
method.
public static final EventConfirmationType ON_CLOSE
public static final EventConfirmationType UNCONFIRMABLE
public static EventConfirmationType[] values()
for (EventConfirmationType c : EventConfirmationType.values()) System.out.println(c);
public static EventConfirmationType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null
Copyright © 1998–2022 iText Group NV. All rights reserved.