Package com.oracle.bmc.core.model
Enum UpdateVolumeAttachmentDetails.IscsiLoginState
- java.lang.Object
-
- java.lang.Enum<UpdateVolumeAttachmentDetails.IscsiLoginState>
-
- com.oracle.bmc.core.model.UpdateVolumeAttachmentDetails.IscsiLoginState
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<UpdateVolumeAttachmentDetails.IscsiLoginState>
- Enclosing class:
- UpdateVolumeAttachmentDetails
public static enum UpdateVolumeAttachmentDetails.IscsiLoginState extends Enum<UpdateVolumeAttachmentDetails.IscsiLoginState> implements BmcEnum
The iscsi login state of the volume attachment.For a multipath volume attachment, all iscsi sessions need to be all logged-in or logged-out to be in logged-in or logged-out state.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LoggingIn
LoggingOut
LoginFailed
LoginSucceeded
LogoutFailed
LogoutSucceeded
Unknown
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateVolumeAttachmentDetails.IscsiLoginState
create(String key)
String
getValue()
static UpdateVolumeAttachmentDetails.IscsiLoginState
valueOf(String name)
Returns the enum constant of this type with the specified name.static UpdateVolumeAttachmentDetails.IscsiLoginState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unknown
public static final UpdateVolumeAttachmentDetails.IscsiLoginState Unknown
-
LoggingIn
public static final UpdateVolumeAttachmentDetails.IscsiLoginState LoggingIn
-
LoginSucceeded
public static final UpdateVolumeAttachmentDetails.IscsiLoginState LoginSucceeded
-
LoginFailed
public static final UpdateVolumeAttachmentDetails.IscsiLoginState LoginFailed
-
LoggingOut
public static final UpdateVolumeAttachmentDetails.IscsiLoginState LoggingOut
-
LogoutSucceeded
public static final UpdateVolumeAttachmentDetails.IscsiLoginState LogoutSucceeded
-
LogoutFailed
public static final UpdateVolumeAttachmentDetails.IscsiLoginState LogoutFailed
-
-
Method Detail
-
values
public static UpdateVolumeAttachmentDetails.IscsiLoginState[] 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 (UpdateVolumeAttachmentDetails.IscsiLoginState c : UpdateVolumeAttachmentDetails.IscsiLoginState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateVolumeAttachmentDetails.IscsiLoginState 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 UpdateVolumeAttachmentDetails.IscsiLoginState create(String key)
-
-