public enum VisitorPhase extends Enum<VisitorPhase>
| Enum Constant and Description |
|---|
COMPOSITION
Perform high-level composition operations on the graph.
|
DISCOVERY
Called during resource discovery (finding all files in archives, etc)
|
INITIAL_ANALYSIS
Called to perform basic analysis (extract all method names from class files, extract metadata from xml files, etc)
|
MIGRATION_RULES
Migration rules will attach data to the graph associated with migration.
|
REPORTING
Reporting visitors produce reports based upon the information contained within the graph
|
| Modifier and Type | Method and Description |
|---|---|
int |
getPriority() |
static VisitorPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VisitorPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VisitorPhase DISCOVERY
public static final VisitorPhase INITIAL_ANALYSIS
public static final VisitorPhase COMPOSITION
public static final VisitorPhase MIGRATION_RULES
public static final VisitorPhase REPORTING
public static VisitorPhase[] values()
for (VisitorPhase c : VisitorPhase.values()) System.out.println(c);
public static VisitorPhase 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 nullpublic int getPriority()
Copyright © 2014 JBoss by Red Hat. All rights reserved.