Package org.jzy3d.plot2d.primitives
Enum Serie2d.Type
- java.lang.Object
-
- java.lang.Enum<Serie2d.Type>
-
- org.jzy3d.plot2d.primitives.Serie2d.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<Serie2d.Type>
- Enclosing interface:
- Serie2d
public static enum Serie2d.Type extends Enum<Serie2d.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LINE
LINE_ON_OFF
SCATTER
SCATTER_POINTS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Serie2d.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static Serie2d.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINE
public static final Serie2d.Type LINE
-
LINE_ON_OFF
public static final Serie2d.Type LINE_ON_OFF
-
SCATTER
public static final Serie2d.Type SCATTER
-
SCATTER_POINTS
public static final Serie2d.Type SCATTER_POINTS
-
-
Method Detail
-
values
public static Serie2d.Type[] 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 (Serie2d.Type c : Serie2d.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Serie2d.Type 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
-
-