Package edu.cmu.tetrad.annotation
Enum Class AlgType
- All Implemented Interfaces:
Serializable
,Comparable<AlgType>
,Constable
Author : Jeremy Espino MD Created 6/30/17 10:36 AM
- Version:
- $Id: $Id
- Author:
- josephramsey
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIf an algorithm allows latent common causes.If an algorithm forbids latent common causes.If algorithm orients edges pairwise.If an algorithm produces undirected graphs.If an algorithm searches for Markov blanekts.If an algorithm searches for structure over latents. -
Method Summary
Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
forbid_latent_common_causes
If an algorithm forbids latent common causes. -
allow_latent_common_causes
If an algorithm allows latent common causes. -
search_for_Markov_blankets
If an algorithm searches for Markov blanekts. -
produce_undirected_graphs
If an algorithm produces undirected graphs. -
orient_pairwise
If algorithm orients edges pairwise. -
search_for_structure_over_latents
If an algorithm searches for structure over latents.
-
-
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
-