public enum RecordingState extends java.lang.Enum<RecordingState>
{C8A770A9-0412-467B-8DAE-0E861279D0BE}| Enum Constant and Description |
|---|
Canceled
Recording has been canceled.
|
Error
Recording has reached an unrecoverable error state and can't continue.
|
Finalizing
Recording has been requested to stop and currently is in its finalizing stage.
|
Initializing
Recording has been requested to start (enabled) and is initializing.
|
LimitReached
A recording limit has been reached (time / size).
|
Paused
Recording has been paused.
|
Resumed
Recording has been resumed from the paused state.
|
Started
Recording has been started and is recording.
|
Stopped
Recording has been stopped.
|
Unknown
Recording state is unknown currently, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static RecordingState |
fromValue(long v) |
static RecordingState |
fromValue(java.lang.String v) |
int |
value() |
static RecordingState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecordingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingState Unknown
public static final RecordingState Initializing
public static final RecordingState Started
public static final RecordingState Paused
public static final RecordingState Resumed
public static final RecordingState Finalizing
public static final RecordingState Stopped
public static final RecordingState Canceled
public static final RecordingState LimitReached
public static final RecordingState Error
public static RecordingState[] values()
for (RecordingState c : RecordingState.values()) System.out.println(c);
public static RecordingState 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 nullpublic int value()
public static RecordingState fromValue(long v)
public static RecordingState fromValue(java.lang.String v)