public static enum VPC.State extends Enum<VPC.State>
Enum Constant and Description |
---|
AVAILABLE
The subnet is available for use.
|
PENDING
The subnet is not yet available for use.
|
UNRECOGNIZED |
Modifier and Type | Method and Description |
---|---|
static VPC.State |
fromValue(String v) |
String |
value() |
static VPC.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VPC.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VPC.State AVAILABLE
public static final VPC.State PENDING
public static final VPC.State UNRECOGNIZED
public static VPC.State[] values()
for (VPC.State c : VPC.State.values()) System.out.println(c);
public static VPC.State 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 String value()
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.