Package cnuphys.splot.plot
Enum Class LimitsMethod
- All Implemented Interfaces:
Serializable
,Comparable<LimitsMethod>
,Constable
How we want to choose axes limits
- Author:
- heddle
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic EnumMap<LimitsMethod,
String> A map for the names of the limit methods -
Method Summary
Modifier and TypeMethodDescriptionstatic EnumComboBox
getComboBox
(LimitsMethod defaultChoice) Obtain a combo box of choices.getName()
Get the nice name of the enum.static LimitsMethod
Returns the enum value from the name.static LimitsMethod
Returns the enum constant of this class with the specified name.static LimitsMethod[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MANUALLIMITS
-
ALGORITHMICLIMITS
-
USEDATALIMITS
-
-
Field Details
-
names
A map for the names of the limit methods
-
-
Method Details
-
values
Returns 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
-
valueOf
Returns 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 nameNullPointerException
- if the argument is null
-
getName
Get the nice name of the enum.- Returns:
- the nice name, for combo boxes, menus, etc.
-
getValue
Returns the enum value from the name.- Parameters:
name
- the name to match.- Returns:
- the
LimitsMethod
that corresponds to the name. Returnsnull
if no match is found.
-
getComboBox
Obtain a combo box of choices.- Parameters:
defaultChoice
-- Returns:
- the combo box of limit methods
-