public enum ConnectionOperationStatus extends java.lang.Enum<ConnectionOperationStatus>
| Enum Constant and Description |
|---|
COMPLETED
completed
|
FAILED
failed
|
INPROGRESS
inprogress
|
UNEXPECTED_VALUE
For ConnectionOperationStatus values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
UNSPECIFIED
unspecified
|
| Modifier and Type | Method and Description |
|---|---|
static ConnectionOperationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConnectionOperationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionOperationStatus UNSPECIFIED
public static final ConnectionOperationStatus INPROGRESS
public static final ConnectionOperationStatus COMPLETED
public static final ConnectionOperationStatus FAILED
public static final ConnectionOperationStatus UNKNOWN_FUTURE_VALUE
public static final ConnectionOperationStatus UNEXPECTED_VALUE
public static ConnectionOperationStatus[] values()
for (ConnectionOperationStatus c : ConnectionOperationStatus.values()) System.out.println(c);
public static ConnectionOperationStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null