public enum AnalysisPhase extends java.lang.Enum<AnalysisPhase>
| Enum Constant and Description |
|---|
FINAL
The final analysis phase.
|
FINDING_ANALYSIS
Finding analysis phase.
|
FINDING_ANALYSIS_PHASE2
Finding analysis phase 2.
|
IDENTIFIER_ANALYSIS
Identifier analysis phase.
|
INFORMATION_COLLECTION
Information collection phase.
|
INFORMATION_COLLECTION2
Information collection phase 2.
|
INITIAL
Initialization phase.
|
POST_FINDING_ANALYSIS
Post analysis phase.
|
POST_IDENTIFIER_ANALYSIS
Post identifier analysis phase.
|
POST_INFORMATION_COLLECTION1
Post information collection phase 1.
|
POST_INFORMATION_COLLECTION2
Post information collection phase 2.
|
POST_INFORMATION_COLLECTION3
Post information collection phase 3.
|
PRE_FINDING_ANALYSIS
Pre finding analysis phase.
|
PRE_IDENTIFIER_ANALYSIS
Pre identifier analysis phase.
|
PRE_INFORMATION_COLLECTION
Pre information collection phase.
|
| Modifier and Type | Method and Description |
|---|---|
static AnalysisPhase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnalysisPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalysisPhase INITIAL
public static final AnalysisPhase PRE_INFORMATION_COLLECTION
public static final AnalysisPhase INFORMATION_COLLECTION
public static final AnalysisPhase INFORMATION_COLLECTION2
public static final AnalysisPhase POST_INFORMATION_COLLECTION1
public static final AnalysisPhase POST_INFORMATION_COLLECTION2
public static final AnalysisPhase POST_INFORMATION_COLLECTION3
public static final AnalysisPhase PRE_IDENTIFIER_ANALYSIS
public static final AnalysisPhase IDENTIFIER_ANALYSIS
public static final AnalysisPhase POST_IDENTIFIER_ANALYSIS
public static final AnalysisPhase PRE_FINDING_ANALYSIS
public static final AnalysisPhase FINDING_ANALYSIS
public static final AnalysisPhase FINDING_ANALYSIS_PHASE2
public static final AnalysisPhase POST_FINDING_ANALYSIS
public static final AnalysisPhase FINAL
public static AnalysisPhase[] values()
for (AnalysisPhase c : AnalysisPhase.values()) System.out.println(c);
public static AnalysisPhase 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 nullCopyright© 2012-21 Jeremy Long. All Rights Reserved.