public static enum Trigger.TimeDomain extends java.lang.Enum<Trigger.TimeDomain>
TimeDomain specifies which of these
domains are applicable to a given operation.| Enum Constant and Description |
|---|
EVENT_TIME
The
EVENT_TIME domain corresponds to the timestamps on the elemnts. |
PROCESSING_TIME
The
PROCESSING_TIME domain corresponds to the current to the current (system) time. |
| Modifier and Type | Method and Description |
|---|---|
static Trigger.TimeDomain |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Trigger.TimeDomain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trigger.TimeDomain EVENT_TIME
EVENT_TIME domain corresponds to the timestamps on the elemnts. Time advances
on the system watermark advances.public static final Trigger.TimeDomain PROCESSING_TIME
PROCESSING_TIME domain corresponds to the current to the current (system) time.
This is advanced during exeuction of the Dataflow pipeline.public static Trigger.TimeDomain[] values()
for (Trigger.TimeDomain c : Trigger.TimeDomain.values()) System.out.println(c);
public static Trigger.TimeDomain valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null