public static enum Event.TextRenderingMode extends Enum<Event.TextRenderingMode>
Enum Constant and Description |
---|
Ellipsis
Shorten the text to fit in the box and display ellipsis to indicate that the text has been shortened.
|
HideAll
If any of the text does not fit, hide all the text.
|
ShowAll
Don't shorten the text at all.
|
Modifier and Type | Method and Description |
---|---|
static Event.TextRenderingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.TextRenderingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.TextRenderingMode ShowAll
public static final Event.TextRenderingMode HideAll
public static final Event.TextRenderingMode Ellipsis
public static Event.TextRenderingMode[] values()
for (Event.TextRenderingMode c : Event.TextRenderingMode.values()) System.out.println(c);
public static Event.TextRenderingMode 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 © 2016 Metron, Inc.. All rights reserved.