public static enum IFunctionDefinition.FunctionClassification extends Enum<IFunctionDefinition.FunctionClassification>
Enum Constant and Description |
---|
CLASS_MEMBER
A function that is a member of a class
|
FILE_MEMBER
A function that is a member of a file
|
INTERFACE_MEMBER
A function that is a member of a interface
|
LOCAL
Local function contained with a non-visible scope
|
PACKAGE_MEMBER
A function that is a member of a package
|
Modifier and Type | Method and Description |
---|---|
static IFunctionDefinition.FunctionClassification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IFunctionDefinition.FunctionClassification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IFunctionDefinition.FunctionClassification LOCAL
public static final IFunctionDefinition.FunctionClassification CLASS_MEMBER
public static final IFunctionDefinition.FunctionClassification INTERFACE_MEMBER
public static final IFunctionDefinition.FunctionClassification PACKAGE_MEMBER
public static final IFunctionDefinition.FunctionClassification FILE_MEMBER
public static IFunctionDefinition.FunctionClassification[] values()
for (IFunctionDefinition.FunctionClassification c : IFunctionDefinition.FunctionClassification.values()) System.out.println(c);
public static IFunctionDefinition.FunctionClassification 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 © 2016 The Apache Software Foundation. All rights reserved.