Package org.zkoss.chart
Enum Subtitle.Attrs
- java.lang.Object
-
- java.lang.Enum<Subtitle.Attrs>
-
- org.zkoss.chart.Subtitle.Attrs
-
- All Implemented Interfaces:
Serializable
,Comparable<Subtitle.Attrs>
,PlotAttribute
,DynamicalAttribute
- Enclosing class:
- Subtitle
protected static enum Subtitle.Attrs extends Enum<Subtitle.Attrs> implements PlotAttribute, DynamicalAttribute
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Subtitle.Attrs
valueOf(String name)
Returns the enum constant of this type with the specified name.static Subtitle.Attrs[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.zkoss.chart.PlotAttribute
toString
-
-
-
-
Enum Constant Detail
-
align
public static final Subtitle.Attrs align
-
floating
public static final Subtitle.Attrs floating
-
style
public static final Subtitle.Attrs style
-
text
public static final Subtitle.Attrs text
-
useHTML
public static final Subtitle.Attrs useHTML
-
verticalAlign
public static final Subtitle.Attrs verticalAlign
-
x
public static final Subtitle.Attrs x
-
y
public static final Subtitle.Attrs y
-
-
Method Detail
-
values
public static Subtitle.Attrs[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Subtitle.Attrs c : Subtitle.Attrs.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Subtitle.Attrs valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-