public static enum RecorderEvent.Type extends Enum<RecorderEvent.Type>
| Enum Constant and Description |
|---|
OTHER
Default value.
|
RECORDING_ENDED
Indicates the end of a recording.
|
RECORDING_STARTED
Indicates the start of a recording.
|
SPEAKER_CHANGED
Indicates that the active speaker has changed.
|
STREAM_ADDED
Indicates that a new stream was added.
|
| Modifier and Type | Method and Description |
|---|---|
static RecorderEvent.Type |
parseString(String str) |
String |
toString() |
static RecorderEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecorderEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecorderEvent.Type RECORDING_STARTED
public static final RecorderEvent.Type RECORDING_ENDED
public static final RecorderEvent.Type SPEAKER_CHANGED
public static final RecorderEvent.Type STREAM_ADDED
public static final RecorderEvent.Type OTHER
public static RecorderEvent.Type[] values()
for (RecorderEvent.Type c : RecorderEvent.Type.values()) System.out.println(c);
public static RecorderEvent.Type 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 toString()
toString in class Enum<RecorderEvent.Type>public static RecorderEvent.Type parseString(String str)
Copyright © 2021 jitsi.org. All rights reserved.