Package edu.cmu.tetrad.search
Enum Class RecursiveBlocking.Blockable
- All Implemented Interfaces:
Serializable,Comparable<RecursiveBlocking.Blockable>,Constable
- Enclosing class:
RecursiveBlocking
Enum representing the blocking status for graph-path-related operations in the
RecursiveBlocking class.
This enum is used to categorize whether a path in a graph is blocked, unblockable, or its status cannot be determined (indeterminate).
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents the state where a path in a graph is blocked and cannot be traversed.Represents the state where the blocking status of a path in a graph cannot be determined.Represents the state where a path in a graph cannot be blocked and is always traversable. -
Method Summary
Modifier and TypeMethodDescriptionstatic RecursiveBlocking.BlockableReturns the enum constant of this class with the specified name.static RecursiveBlocking.Blockable[]values()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, toString, valueOf
-
Enum Constant Details
-
BLOCKED
Represents the state where a path in a graph is blocked and cannot be traversed.This enum constant is part of the
Blockableenumeration used for classifying graph-path-related blocking statuses. -
UNBLOCKABLE
Represents the state where a path in a graph cannot be blocked and is always traversable.This enum constant is part of the
Blockableenumeration, which categorizes the blocking status of paths in graph-related operations. -
INDETERMINATE
Represents the state where the blocking status of a path in a graph cannot be determined.This enum constant is part of the
Blockableenumeration and is used to classify graph-path-related blocking statuses that are uncertain or indeterminate.
-
-
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
-