public static enum TextTrackStyle.TextTrackWindowType extends Enum<TextTrackStyle.TextTrackWindowType>
| Enum Constant and Description |
|---|
NONE
No window type
|
NORMAL
Normal
|
ROUNDED_CORNERS
Rounded corners
|
| Modifier and Type | Method and Description |
|---|---|
static TextTrackStyle.TextTrackWindowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextTrackStyle.TextTrackWindowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextTrackStyle.TextTrackWindowType NONE
public static final TextTrackStyle.TextTrackWindowType NORMAL
public static final TextTrackStyle.TextTrackWindowType ROUNDED_CORNERS
public static TextTrackStyle.TextTrackWindowType[] values()
for (TextTrackStyle.TextTrackWindowType c : TextTrackStyle.TextTrackWindowType.values()) System.out.println(c);
public static TextTrackStyle.TextTrackWindowType 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 © 2022. All rights reserved.