public enum HNElementKind extends Enum<HNElementKind>
| Enum Constant and Description |
|---|
ASSIGN |
BRACKETS_VAR |
CONSTRUCTOR |
EXPR |
FIELD |
LAMBDA |
LOCAL_VAR |
METHOD |
MODULE_NAME |
MODULE_VERSION |
NON_EXPR |
PACKAGE |
STATEMENT |
TYPE |
WHEN_DO |
| Modifier and Type | Method and Description |
|---|---|
static HNElementKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HNElementKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HNElementKind LOCAL_VAR
public static final HNElementKind BRACKETS_VAR
public static final HNElementKind FIELD
public static final HNElementKind METHOD
public static final HNElementKind CONSTRUCTOR
public static final HNElementKind TYPE
public static final HNElementKind PACKAGE
public static final HNElementKind MODULE_NAME
public static final HNElementKind MODULE_VERSION
public static final HNElementKind EXPR
public static final HNElementKind ASSIGN
public static final HNElementKind LAMBDA
public static final HNElementKind NON_EXPR
public static final HNElementKind STATEMENT
public static final HNElementKind WHEN_DO
public static HNElementKind[] values()
for (HNElementKind c : HNElementKind.values()) System.out.println(c);
public static HNElementKind 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 © 2021 vpc open source initiative. All rights reserved.