Package cnuphys.snr.test
Enum Class LineStyle
- All Implemented Interfaces:
- Serializable,- Comparable<LineStyle>,- Constable
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptiongetName()Get the nice name of the enum.static LineStyleReturns the enum value from the name.static LineStyleReturns the enum constant of this class with the specified name.static LineStyle[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
SOLID
- 
DASH
- 
DOT_DASH
- 
DOT
- 
DOUBLE_DASH
- 
LONG_DASH
- 
LONG_DOT_DASH
 
- 
- 
Field Details- 
namesA map for the names of the line styles
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getNameGet the nice name of the enum.- Returns:
- the nice name, for combo boxes, menus, etc.
 
- 
getValueReturns the enum value from the name.- Parameters:
- name- the name to match.
- Returns:
- the LineStylethat corresponds to the name. Returnsnullif no match is found. Note it will check (case insensitive) both the map and thename()result, thus "Up Triangle" or "UPTRIANGLE" or "UpTrIaNgLe" will return theUPTRIANGLEvalue.
 
 
-