Enum Class DataSetType

java.lang.Object
java.lang.Enum<DataSetType>
cnuphys.splot.pdata.DataSetType
All Implemented Interfaces:
Serializable, Comparable<DataSetType>, Constable

public enum DataSetType extends Enum<DataSetType>
Types of data sets
Author:
heddle These are the different types of data sets.
  • XYY An arbitrary number of y sets sharing the same x
  • XYXY An arbitrary number of (x, y) columns
  • XYEXYE An arbitrary number of (x, y, yerr) columns
  • XYEEXYEE An arbitrary number of (x, y, xerr, yerr) columns
  • H1D Data values for a 1D histogram
  • H2D Data values for a 2D histogram
  • STRIP xy strip chart
  • Enum Constant Details

  • Method Details

    • values

      public static DataSetType[] 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 DataSetType 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