Enum TackerVnfStatus
- java.lang.Object
-
- java.lang.Enum<TackerVnfStatus>
-
- org.openstack4j.openstack.tacker.domain.TackerVnfStatus
-
- All Implemented Interfaces:
Serializable,Comparable<TackerVnfStatus>
public enum TackerVnfStatus extends Enum<TackerVnfStatus>
The state of a Tacker (VNF/NFV) entity.
Indicates whether tacker nfv resource is currently operational.
- Author:
- Vishvesh Deshmukh
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVEBUILDDEADDOWNERRORINACTIVEPENDING_CREATEPENDING_DELETEPENDING_SCALE_INPENDING_SCALE_OUTPENDING_UPDATEUNRECOGNIZED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TackerVnfStatusforValue(String value)static TackerVnfStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static TackerVnfStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE
public static final TackerVnfStatus ACTIVE
-
INACTIVE
public static final TackerVnfStatus INACTIVE
-
DEAD
public static final TackerVnfStatus DEAD
-
DOWN
public static final TackerVnfStatus DOWN
-
BUILD
public static final TackerVnfStatus BUILD
-
ERROR
public static final TackerVnfStatus ERROR
-
PENDING_CREATE
public static final TackerVnfStatus PENDING_CREATE
-
PENDING_UPDATE
public static final TackerVnfStatus PENDING_UPDATE
-
PENDING_DELETE
public static final TackerVnfStatus PENDING_DELETE
-
PENDING_SCALE_IN
public static final TackerVnfStatus PENDING_SCALE_IN
-
PENDING_SCALE_OUT
public static final TackerVnfStatus PENDING_SCALE_OUT
-
UNRECOGNIZED
public static final TackerVnfStatus UNRECOGNIZED
-
-
Method Detail
-
values
public static TackerVnfStatus[] 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 (TackerVnfStatus c : TackerVnfStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TackerVnfStatus 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 TackerVnfStatus forValue(String value)
-
-