Package org.conscrypt
Enum HostProperties.Architecture
- java.lang.Object
-
- java.lang.Enum<HostProperties.Architecture>
-
- org.conscrypt.HostProperties.Architecture
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HostProperties.Architecture>
- Enclosing class:
- HostProperties
static enum HostProperties.Architecture extends java.lang.Enum<HostProperties.Architecture>
Enumeration of architectures.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Architecture()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getFileComponent()
Returns the value to use when building filenames for this architecture.static HostProperties.Architecture
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HostProperties.Architecture[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
X86_64
public static final HostProperties.Architecture X86_64
-
X86_32
public static final HostProperties.Architecture X86_32
-
ITANIUM_64
public static final HostProperties.Architecture ITANIUM_64
-
SPARC_32
public static final HostProperties.Architecture SPARC_32
-
SPARC_64
public static final HostProperties.Architecture SPARC_64
-
ARM_32
public static final HostProperties.Architecture ARM_32
-
AARCH_64
public static final HostProperties.Architecture AARCH_64
-
PPC_32
public static final HostProperties.Architecture PPC_32
-
PPC_64
public static final HostProperties.Architecture PPC_64
-
PPCLE_64
public static final HostProperties.Architecture PPCLE_64
-
S390_32
public static final HostProperties.Architecture S390_32
-
S390_64
public static final HostProperties.Architecture S390_64
-
UNKNOWN
public static final HostProperties.Architecture UNKNOWN
-
-
Method Detail
-
values
public static HostProperties.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 (HostProperties.Architecture c : HostProperties.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 HostProperties.Architecture valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getFileComponent
public java.lang.String getFileComponent()
Returns the value to use when building filenames for this architecture.
-
-