Enum Class CurationHistograms.Side

java.lang.Object
java.lang.Enum<CurationHistograms.Side>
sc.fiji.snt.analysis.curation.CurationHistograms.Side
All Implemented Interfaces:
Serializable, Comparable<CurationHistograms.Side>, java.lang.constant.Constable
Enclosing class:
CurationHistograms

public static enum CurationHistograms.Side extends Enum<CurationHistograms.Side>
Defines Which side of the threshold(s) constitutes a flagged value.
  • Enum Constant Details

    • LEFT_FLAGGED

      public static final CurationHistograms.Side LEFT_FLAGGED
      Flagged when value < threshold: shade left of the marker.
    • RIGHT_FLAGGED

      public static final CurationHistograms.Side RIGHT_FLAGGED
      Flagged when value > threshold: shade right of the marker.
    • OUTSIDE_FLAGGED

      public static final CurationHistograms.Side OUTSIDE_FLAGGED
      Flagged when value < min || value > max: shade outside the band.
  • Method Details

    • values

      public static CurationHistograms.Side[] 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 CurationHistograms.Side 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