public enum TypeKind extends Enum<TypeKind>
Enum Constant and Description |
---|
ALIAS |
COCLASS |
DISPATCH |
ENUM |
INTERFACE |
MAX |
MODULE |
RECORD |
UNION |
Modifier and Type | Method and Description |
---|---|
static TypeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeKind ENUM
public static final TypeKind RECORD
public static final TypeKind MODULE
public static final TypeKind INTERFACE
public static final TypeKind DISPATCH
public static final TypeKind COCLASS
public static final TypeKind ALIAS
public static final TypeKind UNION
public static final TypeKind MAX
public static TypeKind[] values()
for (TypeKind c : TypeKind.values()) System.out.println(c);
public static 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 © 2014. All rights reserved.