public enum HFunctionType extends Enum<HFunctionType>
| Enum Constant and Description |
|---|
GET |
INFIX_BINARY |
IS |
NORMAL |
POSTFIX_UNARY |
PREFIX_UNARY |
SET |
SPECIAL
special operators are operators that should be handled in a special manner.
|
| Modifier and Type | Method and Description |
|---|---|
static HFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HFunctionType NORMAL
public static final HFunctionType GET
public static final HFunctionType SET
public static final HFunctionType IS
public static final HFunctionType PREFIX_UNARY
public static final HFunctionType POSTFIX_UNARY
public static final HFunctionType INFIX_BINARY
public static final HFunctionType SPECIAL
public static HFunctionType[] values()
for (HFunctionType c : HFunctionType.values()) System.out.println(c);
public static HFunctionType 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.