public static enum ArchiveLayout.Type extends java.lang.Enum<ArchiveLayout.Type>
type values for the layout.| Enum Constant and Description |
|---|
BESTFIT
Represents the picture-in-picture (pip) layout type.
|
CUSTOM
Represents a custom layout type.
|
HORIZONTAL
Represents the horizontal presentation layout type.
|
PIP
Represents the picture-in-picture (pip) layout type.
|
VERTICAL
Represents the vertical presentation layout type.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static ArchiveLayout.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ArchiveLayout.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchiveLayout.Type PIP
public static final ArchiveLayout.Type BESTFIT
public static final ArchiveLayout.Type VERTICAL
public static final ArchiveLayout.Type HORIZONTAL
public static final ArchiveLayout.Type CUSTOM
public static ArchiveLayout.Type[] values()
for (ArchiveLayout.Type c : ArchiveLayout.Type.values()) System.out.println(c);
public static ArchiveLayout.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<ArchiveLayout.Type>