public enum AnalysisPhase extends 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_COLLECTION
Post information collection phase.
|
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(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_COLLECTION
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(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 © 2012–2020 OWASP. All rights reserved.