public enum TFunctionType extends java.lang.Enum<TFunctionType>
Enum Constant and Description |
---|
LEGACY_DEFINE |
LEGACY_DEFINELONG |
PROCEDURE |
RETURN_FUNCTION |
Modifier and Type | Method and Description |
---|---|
boolean |
isLegacy() |
static TFunctionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TFunctionType PROCEDURE
public static final TFunctionType RETURN_FUNCTION
public static final TFunctionType LEGACY_DEFINE
public static final TFunctionType LEGACY_DEFINELONG
public static TFunctionType[] values()
for (TFunctionType c : TFunctionType.values()) System.out.println(c);
public static TFunctionType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean isLegacy()