- java.lang.Object
-
- java.lang.Enum<IBlobFactory.Platforms>
-
- com.ibm.j9ddr.blobs.IBlobFactory.Platforms
-
- All Implemented Interfaces:
Serializable
,Comparable<IBlobFactory.Platforms>
- Enclosing interface:
- IBlobFactory
public static enum IBlobFactory.Platforms extends Enum<IBlobFactory.Platforms>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IBlobFactory.Platforms
valueOf(String name)
Returns the enum constant of this type with the specified name.static IBlobFactory.Platforms[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
xi32
public static final IBlobFactory.Platforms xi32
-
xa64
public static final IBlobFactory.Platforms xa64
-
wi32
public static final IBlobFactory.Platforms wi32
-
wa64
public static final IBlobFactory.Platforms wa64
-
xp32
public static final IBlobFactory.Platforms xp32
-
xp64
public static final IBlobFactory.Platforms xp64
-
-
Method Detail
-
values
public static IBlobFactory.Platforms[] 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 (IBlobFactory.Platforms c : IBlobFactory.Platforms.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IBlobFactory.Platforms 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
-
-