public static enum ScreenRecorder.State extends Enum<ScreenRecorder.State>
| Modifier and Type | Method and Description |
|---|---|
static ScreenRecorder.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScreenRecorder.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenRecorder.State DONE
public static final ScreenRecorder.State FAILED
public static final ScreenRecorder.State RECORDING
public static ScreenRecorder.State[] values()
for (ScreenRecorder.State c : ScreenRecorder.State.values()) System.out.println(c);
public static ScreenRecorder.State 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 nullCopyright © 2014. All Rights Reserved.