Enum LocalPeeringGateway.PeeringStatus
- java.lang.Object
- 
- java.lang.Enum<LocalPeeringGateway.PeeringStatus>
- 
- com.oracle.bmc.vnmonitoring.model.LocalPeeringGateway.PeeringStatus
 
 
- 
- All Implemented Interfaces:
- BmcEnum,- Serializable,- Comparable<LocalPeeringGateway.PeeringStatus>
 - Enclosing class:
- LocalPeeringGateway
 
 public static enum LocalPeeringGateway.PeeringStatus extends Enum<LocalPeeringGateway.PeeringStatus> implements BmcEnum Whether the LPG is peered with another LPG.NEW means the LPG has not yet been peered. PENDING means the peering is being established. REVOKED means the LPG at the other end of the peering has been deleted. 
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LocalPeeringGateway.PeeringStatuscreate(String key)StringgetValue()static LocalPeeringGateway.PeeringStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static LocalPeeringGateway.PeeringStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Invalidpublic static final LocalPeeringGateway.PeeringStatus Invalid 
 - 
Newpublic static final LocalPeeringGateway.PeeringStatus New 
 - 
Peeredpublic static final LocalPeeringGateway.PeeringStatus Peered 
 - 
Pendingpublic static final LocalPeeringGateway.PeeringStatus Pending 
 - 
Revokedpublic static final LocalPeeringGateway.PeeringStatus Revoked 
 
- 
 - 
Method Detail- 
valuespublic static LocalPeeringGateway.PeeringStatus[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LocalPeeringGateway.PeeringStatus c : LocalPeeringGateway.PeeringStatus.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static LocalPeeringGateway.PeeringStatus valueOf(String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 - 
createpublic static LocalPeeringGateway.PeeringStatus create(String key) 
 
- 
 
-