Package jisa.gui
Enum Series.Shape
- java.lang.Object
-
- java.lang.Enum<Series.Shape>
-
- jisa.gui.Series.Shape
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Series.Shape>
- Enclosing interface:
- Series
public static enum Series.Shape extends java.lang.Enum<Series.Shape>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description JISAMarker
getMarker()
static Series.Shape
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static Series.Shape[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CIRCLE
public static final Series.Shape CIRCLE
-
DOT
public static final Series.Shape DOT
-
SQUARE
public static final Series.Shape SQUARE
-
TRIANGLE
public static final Series.Shape TRIANGLE
-
STAR
public static final Series.Shape STAR
-
DIAMOND
public static final Series.Shape DIAMOND
-
DASH
public static final Series.Shape DASH
-
PLUS
public static final Series.Shape PLUS
-
CROSS
public static final Series.Shape CROSS
-
-
Method Detail
-
values
public static Series.Shape[] 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 (Series.Shape c : Series.Shape.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Series.Shape 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
-
getMarker
public JISAMarker getMarker()
-
-