public enum PrimitiveSubtype extends Enum<PrimitiveSubtype>
Enum Constant and Description |
---|
NATIVE32 |
NATIVE64 |
PRIMITIVE32 |
PRIMITIVE64 |
Modifier and Type | Method and Description |
---|---|
static PrimitiveSubtype |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrimitiveSubtype[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrimitiveSubtype NATIVE32
public static final PrimitiveSubtype NATIVE64
public static final PrimitiveSubtype PRIMITIVE32
public static final PrimitiveSubtype PRIMITIVE64
public static PrimitiveSubtype[] values()
for (PrimitiveSubtype c : PrimitiveSubtype.values()) System.out.println(c);
public static PrimitiveSubtype valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 Optimatika. All rights reserved.