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