Uses of Class
com.bayesserver.VariableKind
-
Packages that use VariableKind Package Description com.bayesserver com.bayesserver.data.discovery -
-
Uses of VariableKind in com.bayesserver
Methods in com.bayesserver that return VariableKind Modifier and Type Method Description VariableKind
Variable. getKind()
Gets the kind of variable, such as Probability, Decision, Utility or Function.static VariableKind
VariableKind. valueOf(String name)
Returns the enum constant of this type with the specified name.static VariableKind[]
VariableKind. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in com.bayesserver with parameters of type VariableKind Constructor Description Node(String name, VariableValueType valueType, VariableKind kind)
Initializes a new instance of theNode
class with the specified [name].Variable(String name, VariableValueType valueType, VariableKind kind)
Initializes a new instance of theVariable
class with the specified name, kind and value type. -
Uses of VariableKind in com.bayesserver.data.discovery
Methods in com.bayesserver.data.discovery that return VariableKind Modifier and Type Method Description VariableKind
VariableDefinition. getKind()
Gets theVariableKind
for the new variable.Methods in com.bayesserver.data.discovery with parameters of type VariableKind Modifier and Type Method Description void
VariableDefinition. setKind(VariableKind value)
Sets theVariableKind
for the new variable.Constructors in com.bayesserver.data.discovery with parameters of type VariableKind Constructor Description VariableDefinition(String dataColumn, String name, VariableValueType valueType, StateValueType stateValueType, VariableKind kind)
Initializes a new instance of theVariableDefinition
class.
-