Package com.oracle.bmc.marketplace.model
Enum ArchitectureType
- java.lang.Object
-
- java.lang.Enum<ArchitectureType>
-
- com.oracle.bmc.marketplace.model.ArchitectureType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ArchitectureType>
@Generated(value="OracleSDKGenerator", comments="API Version: 20181001") public enum ArchitectureType extends Enum<ArchitectureType> implements BmcEnum
Possible values for a listings compatbile architecture
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ArchitectureType
create(String key)
String
getValue()
static ArchitectureType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ArchitectureType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
X86
public static final ArchitectureType X86
-
Arm
public static final ArchitectureType Arm
-
-
Method Detail
-
values
public static ArchitectureType[] 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 (ArchitectureType c : ArchitectureType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ArchitectureType 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 ArchitectureType create(String key)
-
-