|
Did this page help you?Yes No Tell us about it... |
||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||
java.lang.Objectjava.lang.Enum<TableStatus>
com.amazonaws.services.dynamodb.model.TableStatus
@Deprecated public enum TableStatus
Table Status
| Enum Constant Summary | |
|---|---|
ACTIVE
Deprecated. |
|
CREATING
Deprecated. |
|
DELETING
Deprecated. |
|
UPDATING
Deprecated. |
|
| Method Summary | |
|---|---|
static TableStatus |
fromValue(String value)
Deprecated. Use this in place of valueOf. |
String |
toString()
Deprecated. |
static TableStatus |
valueOf(String name)
Deprecated. Returns the enum constant of this type with the specified name. |
static TableStatus[] |
values()
Deprecated. Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TableStatus CREATING
public static final TableStatus UPDATING
public static final TableStatus DELETING
public static final TableStatus ACTIVE
| Method Detail |
|---|
public static TableStatus[] values()
for (TableStatus c : TableStatus.values()) System.out.println(c);
public static TableStatus valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String toString()
toString in class Enum<TableStatus>public static TableStatus fromValue(String value)
value - real value
|
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||