Package org.apache.flink.util
Enum ProcessorArchitecture.MemoryAddressSize
- java.lang.Object
-
- java.lang.Enum<ProcessorArchitecture.MemoryAddressSize>
-
- org.apache.flink.util.ProcessorArchitecture.MemoryAddressSize
-
- All Implemented Interfaces:
Serializable
,Comparable<ProcessorArchitecture.MemoryAddressSize>
- Enclosing class:
- ProcessorArchitecture
public static enum ProcessorArchitecture.MemoryAddressSize extends Enum<ProcessorArchitecture.MemoryAddressSize>
The memory address size of the processor.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProcessorArchitecture.MemoryAddressSize
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProcessorArchitecture.MemoryAddressSize[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_32_BIT
public static final ProcessorArchitecture.MemoryAddressSize _32_BIT
32 bit memory address size.
-
_64_BIT
public static final ProcessorArchitecture.MemoryAddressSize _64_BIT
64 bit memory address size.
-
-
Method Detail
-
values
public static ProcessorArchitecture.MemoryAddressSize[] 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 (ProcessorArchitecture.MemoryAddressSize c : ProcessorArchitecture.MemoryAddressSize.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessorArchitecture.MemoryAddressSize 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
-
-