Enum Storage.NfsVersion
- java.lang.Object
-
- java.lang.Enum<Storage.NfsVersion>
-
- com.oracle.bmc.cloudmigrations.model.Storage.NfsVersion
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<Storage.NfsVersion>
- Enclosing class:
- Storage
public static enum Storage.NfsVersion extends Enum<Storage.NfsVersion> implements BmcEnum
Version of NFS used.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Storage.NfsVersioncreate(String key)StringgetValue()static Storage.NfsVersionvalueOf(String name)Returns the enum constant of this type with the specified name.static Storage.NfsVersion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Auto
public static final Storage.NfsVersion Auto
-
V3
public static final Storage.NfsVersion V3
-
V4
public static final Storage.NfsVersion V4
-
V40
public static final Storage.NfsVersion V40
-
V41
public static final Storage.NfsVersion V41
-
V42
public static final Storage.NfsVersion V42
-
-
Method Detail
-
values
public static Storage.NfsVersion[] 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 (Storage.NfsVersion c : Storage.NfsVersion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Storage.NfsVersion 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 Storage.NfsVersion create(String key)
-
-