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

public static enum RuntimeController.FitMode extends Enum<RuntimeController.FitMode>
Enumeration of plot fit options.
  • Enum Constant Details

    • InitialBounds

      public static final RuntimeController.FitMode InitialBounds
      Fit the plot to the initial bounds of the series.
    • ReferenceSetBounds

      public static final RuntimeController.FitMode ReferenceSetBounds
      Fit the plot to the bounds of the reference set.
    • DynamicBounds

      public static final RuntimeController.FitMode DynamicBounds
      Fit the plot using the bounds of the data currently displayed in the plot.
    • Zoom

      public static final RuntimeController.FitMode Zoom
      Fit the plot based on the zoom, which is set when the user selects a region using the mouse cursor.
  • Method Details

    • values

      public static RuntimeController.FitMode[] 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

      public static RuntimeController.FitMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null