Package com.bayesserver.analysis
Enum LogLikelihoodAnalysisSubsetMethod
- java.lang.Object
-
- java.lang.Enum<LogLikelihoodAnalysisSubsetMethod>
-
- com.bayesserver.analysis.LogLikelihoodAnalysisSubsetMethod
-
- All Implemented Interfaces:
Serializable
,Comparable<LogLikelihoodAnalysisSubsetMethod>
public enum LogLikelihoodAnalysisSubsetMethod extends Enum<LogLikelihoodAnalysisSubsetMethod>
Determines how subsets are determined during a Log-Likelihood analysis.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LogLikelihoodAnalysisSubsetMethod
valueOf(String name)
Returns the enum constant of this type with the specified name.static LogLikelihoodAnalysisSubsetMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INCLUDE
public static final LogLikelihoodAnalysisSubsetMethod INCLUDE
The maximum subset size is the maximum size of the subset of evidence being analyzed.
-
EXCLUDE
public static final LogLikelihoodAnalysisSubsetMethod EXCLUDE
The maximum subset size is the maximum size of the subset of evidence being analyzed that is excluded.
-
-
Method Detail
-
values
public static LogLikelihoodAnalysisSubsetMethod[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LogLikelihoodAnalysisSubsetMethod c : LogLikelihoodAnalysisSubsetMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogLikelihoodAnalysisSubsetMethod valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-