public enum StartOffsetFlag extends Enum<StartOffsetFlag>
| Enum Constant and Description |
|---|
EARLIEST
The earliest stream log time.
|
LATEST
Default, the create time of the tunnel.
|
| Modifier and Type | Method and Description |
|---|---|
static StartOffsetFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StartOffsetFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartOffsetFlag LATEST
public static final StartOffsetFlag EARLIEST
public static StartOffsetFlag[] values()
for (StartOffsetFlag c : StartOffsetFlag.values()) System.out.println(c);
public static StartOffsetFlag 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 © 2024. All Rights Reserved.