public enum AnalysisType extends Enum<AnalysisType>
Java class for AnalysisType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AnalysisType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Static"/>
<enumeration value="Dynamic"/>
<enumeration value="Manual"/>
<enumeration value="eDAST"/>
</restriction>
</simpleType>
| Modifier and Type | Method and Description |
|---|---|
static AnalysisType |
fromValue(String v) |
String |
value() |
static AnalysisType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnalysisType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalysisType STATIC
public static final AnalysisType DYNAMIC
public static final AnalysisType MANUAL
public static final AnalysisType E_DAST
public static AnalysisType[] values()
for (AnalysisType c : AnalysisType.values()) System.out.println(c);
public static AnalysisType 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 String value()
public static AnalysisType fromValue(String v)
Copyright © 2004-2015. All Rights Reserved.