Package io.openvidu.java.client
Enum RecordingLayout
- All Implemented Interfaces:
Serializable
,Comparable<RecordingLayout>
-
Enum Constant Summary
Enum ConstantDescriptionAll the videos are evenly distributed, taking up as much space as possibleUse your own custom recording layout.(not available yet)(not available yet)(not available yet) -
Method Summary
Modifier and TypeMethodDescriptionstatic RecordingLayout
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.
-
Enum Constant Details
-
BEST_FIT
All the videos are evenly distributed, taking up as much space as possible -
PICTURE_IN_PICTURE
(not available yet) -
VERTICAL_PRESENTATION
(not available yet) -
HORIZONTAL_PRESENTATION
(not available yet) -
CUSTOM
Use your own custom recording layout. See Custom recording layouts to learn more.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-