Enum StandardQuantitationType
java.lang.Object
java.lang.Enum<StandardQuantitationType>
ubic.gemma.model.common.quantitationtype.StandardQuantitationType
- All Implemented Interfaces:
Serializable
,Comparable<StandardQuantitationType>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReferring to a measured or derived "amount", indicating the relative or absolute level of something.Indicate a confidence level.Used to represent a value for a spatial coordinate.Indicate a correlation value.Indicates value is a count, such as the number of sequencing reads.Indicate if a failure occurred for a given value or not.Use this for all other types including unknown.Indicate if a value is present or absent.Standard deviations from the mean. -
Method Summary
Modifier and TypeMethodDescriptionstatic StandardQuantitationType
Returns the enum constant of this type with the specified name.static StandardQuantitationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PRESENTABSENT
Indicate if a value is present or absent.This type is generally used for masking another data vector.
Only
PrimitiveType.BOOLEAN
is allowed. -
FAILED
Indicate if a failure occurred for a given value or not.Only
PrimitiveType.BOOLEAN
is allowed. -
AMOUNT
Referring to a measured or derived "amount", indicating the relative or absolute level of something.Typically, an expression level or expression ratio. This is intentionally very generic.
Only
PrimitiveType.INT
,PrimitiveType.LONG
andPrimitiveType.DOUBLE
are allowed. -
CONFIDENCEINDICATOR
Indicate a confidence level.Only
PrimitiveType.DOUBLE
is allowed. -
CORRELATION
Indicate a correlation value.Only
PrimitiveType.DOUBLE
is allowed. -
COUNT
Indicates value is a count, such as the number of sequencing reads.Only
PrimitiveType.INT
,PrimitiveType.LONG
andPrimitiveType.DOUBLE
are allowed. In the case of a double representation, the counts may be *adjusted* or transformed as perScaleType
. -
COORDINATE
Used to represent a value for a spatial coordinate.This is not really supported, so no representation is specified.
-
ZSCORE
Standard deviations from the mean.Only
PrimitiveType.DOUBLE
is allowed. -
OTHER
Use this for all other types including unknown.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-