public static enum ICompilationUnit.Operation extends Enum<ICompilationUnit.Operation>
Enum Constant and Description |
---|
GET_ABC_BYTES |
GET_FILESCOPE |
GET_SEMANTIC_PROBLEMS |
GET_SWF_TAGS |
GET_SYNTAX_TREE |
INVALIDATE_CU |
Modifier and Type | Field and Description |
---|---|
int |
mask
This mask is used by
CompilationUnitBase to update
a AtomicInteger that keeps track of which operations have
been completed. |
Modifier and Type | Method and Description |
---|---|
static ICompilationUnit.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ICompilationUnit.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ICompilationUnit.Operation GET_SYNTAX_TREE
public static final ICompilationUnit.Operation GET_FILESCOPE
public static final ICompilationUnit.Operation GET_SEMANTIC_PROBLEMS
public static final ICompilationUnit.Operation GET_ABC_BYTES
public static final ICompilationUnit.Operation GET_SWF_TAGS
public static final ICompilationUnit.Operation INVALIDATE_CU
public final int mask
CompilationUnitBase
to update
a AtomicInteger
that keeps track of which operations have
been completed.public static ICompilationUnit.Operation[] values()
for (ICompilationUnit.Operation c : ICompilationUnit.Operation.values()) System.out.println(c);
public static ICompilationUnit.Operation 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.