Enum OlvmCpu.Architecture
- java.lang.Object
-
- java.lang.Enum<OlvmCpu.Architecture>
-
- com.oracle.bmc.cloudmigrations.model.OlvmCpu.Architecture
-
- All Implemented Interfaces:
BmcEnum,Serializable,Comparable<OlvmCpu.Architecture>
- Enclosing class:
- OlvmCpu
public static enum OlvmCpu.Architecture extends Enum<OlvmCpu.Architecture> implements BmcEnum
CPU architecture
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OlvmCpu.Architecturecreate(String key)StringgetValue()static OlvmCpu.ArchitecturevalueOf(String name)Returns the enum constant of this type with the specified name.static OlvmCpu.Architecture[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Aarch64
public static final OlvmCpu.Architecture Aarch64
-
Ppc64
public static final OlvmCpu.Architecture Ppc64
-
S390X
public static final OlvmCpu.Architecture S390X
-
Undefined
public static final OlvmCpu.Architecture Undefined
-
X8664
public static final OlvmCpu.Architecture X8664
-
-
Method Detail
-
values
public static OlvmCpu.Architecture[] 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 (OlvmCpu.Architecture c : OlvmCpu.Architecture.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OlvmCpu.Architecture 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 OlvmCpu.Architecture create(String key)
-
-