public static enum TimelineSchema.SequenceIdGeneration extends Enum<TimelineSchema.SequenceIdGeneration>
| Enum Constant and Description |
|---|
AUTO_INCREMENT
Auto generate sequence id, use TableStore's auto-increment column.
|
MANUAL
Manual set sequence id, should be unique and incremental.
|
| Modifier and Type | Method and Description |
|---|---|
static TimelineSchema.SequenceIdGeneration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimelineSchema.SequenceIdGeneration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimelineSchema.SequenceIdGeneration AUTO_INCREMENT
public static final TimelineSchema.SequenceIdGeneration MANUAL
public static TimelineSchema.SequenceIdGeneration[] values()
for (TimelineSchema.SequenceIdGeneration c : TimelineSchema.SequenceIdGeneration.values()) System.out.println(c);
public static TimelineSchema.SequenceIdGeneration 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.