public static enum TextTrackStyle.TextTrackEdgeType extends Enum<TextTrackStyle.TextTrackEdgeType>
| Enum Constant and Description |
|---|
DEPRESSED
Text is debossed on background
|
DROP_SHADOW
A fading shadow is casted around text
|
NONE
No edge is displayed around text
|
OUTLINE
Solid outline is displayed around text
|
RAISED
Text is embossed on background
|
| Modifier and Type | Method and Description |
|---|---|
static TextTrackStyle.TextTrackEdgeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextTrackStyle.TextTrackEdgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextTrackStyle.TextTrackEdgeType NONE
public static final TextTrackStyle.TextTrackEdgeType OUTLINE
public static final TextTrackStyle.TextTrackEdgeType DROP_SHADOW
public static final TextTrackStyle.TextTrackEdgeType RAISED
public static final TextTrackStyle.TextTrackEdgeType DEPRESSED
public static TextTrackStyle.TextTrackEdgeType[] values()
for (TextTrackStyle.TextTrackEdgeType c : TextTrackStyle.TextTrackEdgeType.values()) System.out.println(c);
public static TextTrackStyle.TextTrackEdgeType 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.