Package com.oracle.bmc.filestorage.model
Enum CreateFileSystemDetails.CloneAttachStatus
- java.lang.Object
-
- java.lang.Enum<CreateFileSystemDetails.CloneAttachStatus>
-
- com.oracle.bmc.filestorage.model.CreateFileSystemDetails.CloneAttachStatus
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<CreateFileSystemDetails.CloneAttachStatus>
- Enclosing class:
- CreateFileSystemDetails
public static enum CreateFileSystemDetails.CloneAttachStatus extends Enum<CreateFileSystemDetails.CloneAttachStatus> implements BmcEnum
Specifies whether the clone file system is attached to its parent file system.If the value is set to ‘DETACH’, then the file system will be created, which is deep copied from the snapshot specified by sourceSnapshotId, else will remain attached to its parent.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CreateFileSystemDetails.CloneAttachStatus
create(String key)
String
getValue()
static CreateFileSystemDetails.CloneAttachStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static CreateFileSystemDetails.CloneAttachStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Detach
public static final CreateFileSystemDetails.CloneAttachStatus Detach
-
Attach
public static final CreateFileSystemDetails.CloneAttachStatus Attach
-
-
Method Detail
-
values
public static CreateFileSystemDetails.CloneAttachStatus[] 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 (CreateFileSystemDetails.CloneAttachStatus c : CreateFileSystemDetails.CloneAttachStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreateFileSystemDetails.CloneAttachStatus 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 CreateFileSystemDetails.CloneAttachStatus create(String key)
-
-