public enum CaptureState extends java.lang.Enum<CaptureState>
Enum Constant and Description |
---|
COMPLETE
All processing about a capture is completed.
|
EXECUTING
A capture is in progress.
|
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static CaptureState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CaptureState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaptureState UNKNOWN
public static final CaptureState EXECUTING
public static final CaptureState COMPLETE
public static CaptureState[] values()
for (CaptureState c : CaptureState.values()) System.out.println(c);
public static CaptureState 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