Enum Trace.PointStyle
- java.lang.Object
-
- java.lang.Enum<Trace.PointStyle>
-
- org.eclipse.nebula.visualization.xygraph.figures.Trace.PointStyle
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Trace.PointStyle>
- Enclosing class:
- Trace
public static enum Trace.PointStyle extends java.lang.Enum<Trace.PointStyle>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BAR
CIRCLE
CROSS
DIAMOND
FILLED_CIRCLE
FILLED_DIAMOND
FILLED_SQUARE
FILLED_TRIANGLE
NONE
POINT
SQUARE
TRIANGLE
XCROSS
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
description
-
Constructor Summary
Constructors Modifier Constructor Description private
PointStyle(java.lang.String description)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.lang.String[]
stringValues()
java.lang.String
toString()
static Trace.PointStyle
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Trace.PointStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Trace.PointStyle NONE
-
POINT
public static final Trace.PointStyle POINT
-
CIRCLE
public static final Trace.PointStyle CIRCLE
-
FILLED_CIRCLE
public static final Trace.PointStyle FILLED_CIRCLE
-
TRIANGLE
public static final Trace.PointStyle TRIANGLE
-
FILLED_TRIANGLE
public static final Trace.PointStyle FILLED_TRIANGLE
-
SQUARE
public static final Trace.PointStyle SQUARE
-
FILLED_SQUARE
public static final Trace.PointStyle FILLED_SQUARE
-
DIAMOND
public static final Trace.PointStyle DIAMOND
-
FILLED_DIAMOND
public static final Trace.PointStyle FILLED_DIAMOND
-
XCROSS
public static final Trace.PointStyle XCROSS
-
CROSS
public static final Trace.PointStyle CROSS
-
BAR
public static final Trace.PointStyle BAR
-
-
Method Detail
-
values
public static Trace.PointStyle[] 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 (Trace.PointStyle c : Trace.PointStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Trace.PointStyle valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<Trace.PointStyle>
-
stringValues
public static java.lang.String[] stringValues()
-
-