Enum LogicalUnit.LunStatus
- java.lang.Object
-
- java.lang.Enum<LogicalUnit.LunStatus>
-
- com.oracle.bmc.cloudmigrations.model.LogicalUnit.LunStatus
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<LogicalUnit.LunStatus>
- Enclosing class:
- LogicalUnit
public static enum LogicalUnit.LunStatus extends Enum<LogicalUnit.LunStatus> implements BmcEnum
LUN Status
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LogicalUnit.LunStatuscreate(String key)StringgetValue()static LogicalUnit.LunStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static LogicalUnit.LunStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Free
public static final LogicalUnit.LunStatus Free
-
Unusable
public static final LogicalUnit.LunStatus Unusable
-
Used
public static final LogicalUnit.LunStatus Used
-
-
Method Detail
-
values
public static LogicalUnit.LunStatus[] 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 (LogicalUnit.LunStatus c : LogicalUnit.LunStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogicalUnit.LunStatus 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
-
create
public static LogicalUnit.LunStatus create(String key)
-
-