Enum Class RuntimeController.FitMode
java.lang.Object
java.lang.Enum<RuntimeController.FitMode>
org.moeaframework.analysis.viewer.RuntimeController.FitMode
- All Implemented Interfaces:
Serializable
,Comparable<RuntimeController.FitMode>
,Constable
- Enclosing class:
- RuntimeController
Enumeration of plot fit options.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFit the plot using the bounds of the data currently displayed in the plot.Fit the plot to the initial bounds of the series.Fit the plot to the bounds of the reference set.Fit the plot based on the zoom, which is set when the user selects a region using the mouse cursor. -
Method Summary
Modifier and TypeMethodDescriptionstatic RuntimeController.FitMode
Returns the enum constant of this class with the specified name.static RuntimeController.FitMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
InitialBounds
Fit the plot to the initial bounds of the series. -
ReferenceSetBounds
Fit the plot to the bounds of the reference set. -
DynamicBounds
Fit the plot using the bounds of the data currently displayed in the plot. -
Zoom
Fit the plot based on the zoom, which is set when the user selects a region using the mouse cursor.
-
-
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
-