Enum Class RecursiveAdjustment.GraphType
- All Implemented Interfaces:
Serializable, Comparable<RecursiveAdjustment.GraphType>, Constable
- Enclosing class:
RecursiveAdjustment
Represents the type of graph being analyzed for adjustment set definition.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents a Maximal Ancestral Graph (MAG) within the context of the graph analysis.Represents a Partial Ancestral Graph (PAG) within the context of the graph analysis.Represents a Partially Directed Acyclic Graph (PDAG) within the context of the graph analysis. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static RecursiveAdjustment.GraphType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
PDAG
Represents a Partially Directed Acyclic Graph (PDAG) within the context of the graph analysis. A PDAG is a graph type used for describing the structure of causal relationships while allowing some edges to remain undirected. -
MAG
Represents a Maximal Ancestral Graph (MAG) within the context of the graph analysis. A MAG is a graph type used to encode causal relationships, typically in the presence of latent variables and selection bias. It allows the representation of both directed and bidirectional edges while maintaining specific ancestral properties. -
PAG
Represents a Partial Ancestral Graph (PAG) within the context of the graph analysis. A PAG is used to depict possible causal structures, accounting for latent variables and selection bias. It is a graphical representation that includes directed, undirected, and bidirectional edges, encapsulating causal and non-causal relationships in a compact form.
-
-
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
-