Enum Class ParamComparison

java.lang.Object
java.lang.Enum<ParamComparison>
edu.cmu.tetrad.sem.ParamComparison
All Implemented Interfaces:
Serializable, Comparable<ParamComparison>, Constable

public enum ParamComparison extends Enum<ParamComparison>
An enum of the types of the various comparisons a parameter may have with respect to one another for SEM estimation.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    An enum representing the "EQ" comparison type for a parameter in SEM estimation.
    An enum value representing the "LE" comparison type for a parameter in SEM estimation.
    Represents the "LT" comparison type for a parameter in SEM estimation.
    Represents the "Non-comparable" comparison type for a parameter in SEM estimation.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    Returns the enum constant of this class with the specified name.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Enum

    compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • NC

      public static final ParamComparison NC
      Represents the "Non-comparable" comparison type for a parameter in SEM estimation. This type of comparison indicates that the parameter is not comparable to any other parameter in the structural equation model.
    • EQ

      public static final ParamComparison EQ
      An enum representing the "EQ" comparison type for a parameter in SEM estimation. This type of comparison indicates that the parameter is equal to another parameter in the structural equation model.
    • LT

      public static final ParamComparison LT
      Represents the "LT" comparison type for a parameter in SEM estimation. This type of comparison indicates that the parameter is less than another parameter in the structural equation model.
    • LE

      public static final ParamComparison LE
      An enum value representing the "LE" comparison type for a parameter in SEM estimation. This type of comparison indicates that the parameter is less than or equal to another parameter in the structural equation model.
  • Method Details

    • values

      public static ParamComparison[] 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 ParamComparison 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
    • toString

      public String toString()
      Overrides:
      toString in class Enum<ParamComparison>