public static enum Recording.OutputMode extends Enum<Recording.OutputMode>
| Enum Constant and Description |
|---|
COMPOSED
Record all streams in a grid layout in a single archive
|
INDIVIDUAL
Record each stream individually
|
| Modifier and Type | Method and Description |
|---|---|
static Recording.OutputMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Recording.OutputMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Recording.OutputMode COMPOSED
public static final Recording.OutputMode INDIVIDUAL
public static Recording.OutputMode[] values()
for (Recording.OutputMode c : Recording.OutputMode.values()) System.out.println(c);
public static Recording.OutputMode 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 © 2019 OpenVidu. All rights reserved.