public enum ArchiveLayout extends Enum<ArchiveLayout>
| Enum Constant and Description |
|---|
BEST_FIT |
HORIZONTAL_PRESENTATION |
PICTURE_IN_PICTURE |
VERTICAL_PRESENTATION |
| Modifier and Type | Method and Description |
|---|---|
static ArchiveLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArchiveLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchiveLayout BEST_FIT
public static final ArchiveLayout PICTURE_IN_PICTURE
public static final ArchiveLayout VERTICAL_PRESENTATION
public static final ArchiveLayout HORIZONTAL_PRESENTATION
public static ArchiveLayout[] values()
for (ArchiveLayout c : ArchiveLayout.values()) System.out.println(c);
public static ArchiveLayout 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 © 2018 OpenVidu. All rights reserved.