public enum AnnotationSurfaceEnum extends java.lang.Enum<AnnotationSurfaceEnum>
IAnnotation
is placed onEnum Constant and Description |
---|
AboveChart
The annotation is placed above the chart
|
XAxis
The annotation is placed on the XAxis
|
YAxis
The annotation is placed on the YAxis
|
Modifier and Type | Method and Description |
---|---|
static AnnotationSurfaceEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationSurfaceEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationSurfaceEnum AboveChart
public static final AnnotationSurfaceEnum XAxis
public static final AnnotationSurfaceEnum YAxis
public static AnnotationSurfaceEnum[] values()
for (AnnotationSurfaceEnum c : AnnotationSurfaceEnum.values()) System.out.println(c);
public static AnnotationSurfaceEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null