public enum V3ProbabilityDistributionType extends Enum<V3ProbabilityDistributionType>
| Enum Constant and Description |
|---|
B
The beta-distribution is used for data that is bounded on both sides and may or may not be skewed (e.g., occurs when probabilities are estimated.) Two parameters a and b are available to adjust the curve.
|
E
Used for data that describes extinction.
|
F
Used to describe the quotient of two c2 random variables.
|
G
The gamma-distribution used for data that is skewed and bounded to the right, i.e.
|
LN
The logarithmic normal distribution is used to transform skewed random variable X into a normally distributed random variable U = log X.
|
N
This is the well-known bell-shaped normal distribution.
|
NULL
added to help the parsers
|
T
Used to describe the quotient of a normal random variable and the square root of a c2 random variable.
|
U
The uniform distribution assigns a constant probability over the entire interval of possible outcomes, while all outcomes outside this interval are assumed to have zero probability.
|
X2
Used to describe the sum of squares of random variables which occurs when a variance is estimated (rather than presumed) from the sample.
|
| Modifier and Type | Method and Description |
|---|---|
static V3ProbabilityDistributionType |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static V3ProbabilityDistributionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static V3ProbabilityDistributionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final V3ProbabilityDistributionType B
public static final V3ProbabilityDistributionType E
public static final V3ProbabilityDistributionType F
public static final V3ProbabilityDistributionType G
public static final V3ProbabilityDistributionType LN
public static final V3ProbabilityDistributionType N
public static final V3ProbabilityDistributionType T
public static final V3ProbabilityDistributionType U
public static final V3ProbabilityDistributionType X2
public static final V3ProbabilityDistributionType NULL
public static V3ProbabilityDistributionType[] values()
for (V3ProbabilityDistributionType c : V3ProbabilityDistributionType.values()) System.out.println(c);
public static V3ProbabilityDistributionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static V3ProbabilityDistributionType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.