public enum RecordingLayout extends Enum<RecordingLayout>
Enum Constant and Description |
---|
BEST_FIT
All the videos are evenly distributed, taking up as much space as possible
|
CUSTOM
Use your own custom recording layout.
|
HORIZONTAL_PRESENTATION
(not available yet)
|
PICTURE_IN_PICTURE
(not available yet)
|
VERTICAL_PRESENTATION
(not available yet)
|
Modifier and Type | Method and Description |
---|---|
static RecordingLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecordingLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecordingLayout BEST_FIT
public static final RecordingLayout PICTURE_IN_PICTURE
public static final RecordingLayout VERTICAL_PRESENTATION
public static final RecordingLayout HORIZONTAL_PRESENTATION
public static final RecordingLayout CUSTOM
public static RecordingLayout[] values()
for (RecordingLayout c : RecordingLayout.values()) System.out.println(c);
public static RecordingLayout 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 © 2020 OpenVidu. All rights reserved.