public static enum TypeNode.TypeKind extends Enum<TypeNode.TypeKind>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE |
CHAR |
DOUBLE |
FLOAT |
INT |
LONG |
OBJECT |
SHORT |
VOID |
| Modifier and Type | Method and Description |
|---|---|
static TypeNode.TypeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeNode.TypeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeNode.TypeKind BYTE
public static final TypeNode.TypeKind SHORT
public static final TypeNode.TypeKind INT
public static final TypeNode.TypeKind LONG
public static final TypeNode.TypeKind FLOAT
public static final TypeNode.TypeKind DOUBLE
public static final TypeNode.TypeKind BOOLEAN
public static final TypeNode.TypeKind CHAR
public static final TypeNode.TypeKind OBJECT
public static final TypeNode.TypeKind VOID
public static TypeNode.TypeKind[] values()
for (TypeNode.TypeKind c : TypeNode.TypeKind.values()) System.out.println(c);
public static TypeNode.TypeKind 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 © 2022 Google LLC. All rights reserved.