public enum AntivirusAsyncEvent extends java.lang.Enum<AntivirusAsyncEvent>
Enum Constant and Description |
---|
MISSING |
PREPARE |
PROCESSING_ERROR |
SIZE_EXCEEDED |
SUCCESS |
VIRUS_FOUND |
Modifier and Type | Method and Description |
---|---|
static AntivirusAsyncEvent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AntivirusAsyncEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AntivirusAsyncEvent MISSING
public static final AntivirusAsyncEvent PREPARE
public static final AntivirusAsyncEvent PROCESSING_ERROR
public static final AntivirusAsyncEvent SIZE_EXCEEDED
public static final AntivirusAsyncEvent SUCCESS
public static final AntivirusAsyncEvent VIRUS_FOUND
public static AntivirusAsyncEvent[] values()
for (AntivirusAsyncEvent c : AntivirusAsyncEvent.values()) System.out.println(c);
public static AntivirusAsyncEvent 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 null