public enum NatStatus extends Enum<NatStatus>
| Enum Constant and Description |
|---|
ACTIVE |
BUILDING |
CONFIGURING |
DELETED |
DELETING |
DOWN |
ERROR |
REBOOTING |
STARTING |
STOPPING |
UNCONFIGURED |
UPDATING |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
String |
toString() |
static NatStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NatStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NatStatus ACTIVE
public static final NatStatus UPDATING
public static final NatStatus UNCONFIGURED
public static final NatStatus DOWN
public static final NatStatus BUILDING
public static final NatStatus ERROR
public static final NatStatus DELETING
public static final NatStatus DELETED
public static final NatStatus STARTING
public static final NatStatus CONFIGURING
public static final NatStatus REBOOTING
public static final NatStatus STOPPING
public static NatStatus[] values()
for (NatStatus c : NatStatus.values()) System.out.println(c);
public static NatStatus 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 getValue()
Copyright © 2026. All rights reserved.