public static enum IBasicType.Kind extends Enum<IBasicType.Kind>
Enum Constant and Description |
---|
eBoolean |
eChar |
eChar16 |
eChar32 |
eDecimal128 |
eDecimal32 |
eDecimal64 |
eDouble |
eFloat |
eFloat128 |
eInt |
eInt128 |
eNullPtr |
eUnspecified |
eVoid |
eWChar |
Modifier and Type | Method and Description |
---|---|
static IBasicType.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IBasicType.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IBasicType.Kind eUnspecified
public static final IBasicType.Kind eVoid
public static final IBasicType.Kind eChar
public static final IBasicType.Kind eWChar
public static final IBasicType.Kind eInt
public static final IBasicType.Kind eFloat
public static final IBasicType.Kind eDouble
public static final IBasicType.Kind eBoolean
public static final IBasicType.Kind eChar16
public static final IBasicType.Kind eChar32
public static final IBasicType.Kind eNullPtr
public static final IBasicType.Kind eInt128
public static final IBasicType.Kind eFloat128
public static final IBasicType.Kind eDecimal32
public static final IBasicType.Kind eDecimal64
public static final IBasicType.Kind eDecimal128
public static IBasicType.Kind[] values()
for (IBasicType.Kind c : IBasicType.Kind.values()) System.out.println(c);
public static IBasicType.Kind 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 (c) IBM Corp. and others 2004, 2020. All Rights Reserved.