public enum RenderingType extends Enum<RenderingType>
| Enum Constant and Description |
|---|
NO_GRAPH
Enum value NoGraph.
|
TABLE
Enum value Table.
|
TIME_SERIES
Enum value TimeSeries.
|
TIME_SERIES_PER_INSTANCE
Enum value TimeSeriesPerInstance.
|
| Modifier and Type | Method and Description |
|---|---|
static RenderingType |
fromString(String value)
Parses a serialized value to a RenderingType instance.
|
String |
toString() |
static RenderingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingType NO_GRAPH
public static final RenderingType TABLE
public static final RenderingType TIME_SERIES
public static final RenderingType TIME_SERIES_PER_INSTANCE
public static RenderingType[] values()
for (RenderingType c : RenderingType.values()) System.out.println(c);
public static RenderingType 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 nullpublic static RenderingType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<RenderingType>Copyright © 2019. All rights reserved.