Enum NeutronFirewall.FirewallStatus
- java.lang.Object
-
- java.lang.Enum<NeutronFirewall.FirewallStatus>
-
- org.openstack4j.openstack.networking.domain.ext.NeutronFirewall.FirewallStatus
-
- All Implemented Interfaces:
Serializable,Comparable<NeutronFirewall.FirewallStatus>
- Enclosing class:
- NeutronFirewall
public static enum NeutronFirewall.FirewallStatus extends Enum<NeutronFirewall.FirewallStatus>
The state of a Neutron (Firewall - FwaaS) entity.
Indicates whether firewall resource is currently operational.
- Author:
- Vishvesh Deshmukh
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEBUILDDOWNERRORPENDING_CREATEPENDING_DELETEPENDING_UPDATEUNRECOGNIZED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NeutronFirewall.FirewallStatusforValue(String value)static NeutronFirewall.FirewallStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static NeutronFirewall.FirewallStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE
public static final NeutronFirewall.FirewallStatus ACTIVE
-
DOWN
public static final NeutronFirewall.FirewallStatus DOWN
-
BUILD
public static final NeutronFirewall.FirewallStatus BUILD
-
ERROR
public static final NeutronFirewall.FirewallStatus ERROR
-
PENDING_CREATE
public static final NeutronFirewall.FirewallStatus PENDING_CREATE
-
PENDING_UPDATE
public static final NeutronFirewall.FirewallStatus PENDING_UPDATE
-
PENDING_DELETE
public static final NeutronFirewall.FirewallStatus PENDING_DELETE
-
UNRECOGNIZED
public static final NeutronFirewall.FirewallStatus UNRECOGNIZED
-
-
Method Detail
-
values
public static NeutronFirewall.FirewallStatus[] 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 (NeutronFirewall.FirewallStatus c : NeutronFirewall.FirewallStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NeutronFirewall.FirewallStatus 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 nameNullPointerException- if the argument is null
-
forValue
public static NeutronFirewall.FirewallStatus forValue(String value)
-
-