public static enum Event.OverlapRenderingMode extends Enum<Event.OverlapRenderingMode>
Enum Constant and Description |
---|
Intersecting
Shorten the text when it overflows the box for this Event or overlaps with another Event.
|
None
Don't try to detect overlaps.
|
Overfull
Only shorten text when it overflows the box for this Event.
|
Modifier and Type | Method and Description |
---|---|
static Event.OverlapRenderingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.OverlapRenderingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.OverlapRenderingMode None
ShortenMode
.public static final Event.OverlapRenderingMode Overfull
public static final Event.OverlapRenderingMode Intersecting
public static Event.OverlapRenderingMode[] values()
for (Event.OverlapRenderingMode c : Event.OverlapRenderingMode.values()) System.out.println(c);
public static Event.OverlapRenderingMode 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.