public static enum SeekTarget.Kind extends Enum<SeekTarget.Kind>
| Enum Constant and Description |
|---|
BACKLOG_LOCATION |
EVENT_TIME |
PUBLISH_TIME |
| Modifier and Type | Method and Description |
|---|---|
static SeekTarget.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SeekTarget.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SeekTarget.Kind BACKLOG_LOCATION
public static final SeekTarget.Kind PUBLISH_TIME
public static final SeekTarget.Kind EVENT_TIME
public static SeekTarget.Kind[] values()
for (SeekTarget.Kind c : SeekTarget.Kind.values()) System.out.println(c);
public static SeekTarget.Kind 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 © 2021 Google LLC. All rights reserved.