public enum HLInvokableType extends Enum<HLInvokableType>
| Enum Constant and Description |
|---|
CLASS_INIT |
CONSTRUCTOR |
FUNCTION |
INSTANCE_INIT |
MAIN_CONSTRUCTOR |
METHOD |
| Modifier and Type | Method and Description |
|---|---|
static HLInvokableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HLInvokableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HLInvokableType MAIN_CONSTRUCTOR
public static final HLInvokableType CONSTRUCTOR
public static final HLInvokableType METHOD
public static final HLInvokableType FUNCTION
public static final HLInvokableType INSTANCE_INIT
public static final HLInvokableType CLASS_INIT
public static HLInvokableType[] values()
for (HLInvokableType c : HLInvokableType.values()) System.out.println(c);
public static HLInvokableType 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 © 2025 vpc open source initiative. All rights reserved.