public enum EventRenderMode extends Enum<EventRenderMode>
EventRenderer
.Enum Constant and Description |
---|
None
The events are not displayed.
|
Shape
The events are represented only by shape which represent their length.
|
Shape_And_Text
The events are represented by shape and text.
|
Text
The events are represented only by text.
|
Modifier and Type | Method and Description |
---|---|
static EventRenderMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventRenderMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventRenderMode Shape
public static final EventRenderMode Text
public static final EventRenderMode Shape_And_Text
public static final EventRenderMode None
public static EventRenderMode[] values()
for (EventRenderMode c : EventRenderMode.values()) System.out.println(c);
public static EventRenderMode 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 null