public enum Template extends Enum<Template>
Modifier and Type | Method and Description |
---|---|
String |
getTemplateName() |
static Template |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Template[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Template DEFAULT_TABLE_TEMPLATE
public static final Template DEFAULT_BAR_CHART_TEMPLATE
public static final Template DEFAULT_LINE_CHART_TEMPLATE
public static final Template DEFAULT_STACKED_BAR_CHART_TEMPLATE
public static final Template DEFAULT_STACKED_AREA_CHART_TEMPLATE
public static final Template DEFAULT_AREA_CHART_TEMPLATE
public static final Template DEFAULT_XY_BAR_CHART_TEMPLATE
public static final Template DEFAULT_XY_LINE_CHART_TEMPLATE
public static final Template DEFAULT_XY_AREA_CHART_TEMPLATE
public static final Template DEFAULT_PIE_CHART_TEMPLATE
public static final Template DEFAULT_COMPOSITE_TEMPLATE
public static Template[] values()
for (Template c : Template.values()) System.out.println(c);
public static Template 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 String getTemplateName()
Copyright © 2019 WSO2. All rights reserved.