public enum ScanType extends Enum<ScanType>
Java class for ScanType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ScanType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="ALLSCANS"/>
<enumeration value="REGULAR"/>
<enumeration value="SUBSET"/>
<enumeration value="PARTIAL"/>
<enumeration value="RUNNING"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALLSCANS |
PARTIAL |
REGULAR |
RUNNING |
SUBSET |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ScanType |
fromValue(String v) |
String |
value() |
static ScanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanType UNKNOWN
public static final ScanType ALLSCANS
public static final ScanType REGULAR
public static final ScanType SUBSET
public static final ScanType PARTIAL
public static final ScanType RUNNING
public static ScanType[] values()
for (ScanType c : ScanType.values()) System.out.println(c);
public static ScanType 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()
Copyright © 2020. All rights reserved.