public static enum Table.SchemaState extends Enum<Table.SchemaState> implements BmcEnum
The current state of this table’s schema. Available states are MUTABLE - The schema can be changed. The table is not eligible for replication. FROZEN - The schema is immutable. The table is eligible for replication.
Enum Constant and Description |
---|
Frozen |
Mutable |
UnknownEnumValue
This value is used if a service returns a value for this enum that is not recognized by
this version of the SDK.
|
Modifier and Type | Method and Description |
---|---|
static Table.SchemaState |
create(String key) |
String |
getValue() |
static Table.SchemaState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Table.SchemaState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Table.SchemaState Mutable
public static final Table.SchemaState Frozen
public static final Table.SchemaState UnknownEnumValue
public static Table.SchemaState[] values()
for (Table.SchemaState c : Table.SchemaState.values()) System.out.println(c);
public static Table.SchemaState 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 nullpublic static Table.SchemaState create(String key)
Copyright © 2016–2024. All rights reserved.