public enum TimestampKind extends Enum<TimestampKind>
| Enum Constant and Description |
|---|
EVENT
Denotes the event timestamp kind.
|
FRAME
Denotes the frame timestamp kind.
|
| Modifier and Type | Method and Description |
|---|---|
static TimestampKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimestampKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimestampKind EVENT
public static final TimestampKind FRAME
public static TimestampKind[] values()
for (TimestampKind c : TimestampKind.values()) System.out.println(c);
public static TimestampKind 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 © 2022 Hazelcast, Inc.. All rights reserved.