Enum Class ClinvarClnSig
- All Implemented Interfaces:
Serializable
,Comparable<ClinvarClnSig>
,Constable
Clinvar clinical significance categories.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
boolean
static ClinvarClnSig
Returns the enum constant of this class with the specified name.static ClinvarClnSig[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PATHOGENIC
-
LIKELY_PATHOGENIC
-
PATHOGENIC_OR_LIKELY_PATHOGENIC
-
UNCERTAIN_SIGNIFICANCE
-
CONFLICTING_PATHOGENICITY_INTERPRETATIONS
-
BENIGN
-
LIKELY_BENIGN
-
BENIGN_OR_LIKELY_BENIGN
-
AFFECTS
-
ASSOCIATION
-
DRUG_RESPONSE
-
PROTECTIVE
-
RISK_FACTOR
-
OTHER
-
NOT_PROVIDED
-
-
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
-
isPathogenicOrLikelyPathogenic
public boolean isPathogenicOrLikelyPathogenic() -
isBenignOrLikelyBenign
public boolean isBenignOrLikelyBenign()- Returns:
true
if the significance is one ofBENIGN
,LIKELY_BENIGN
, orBENIGN_OR_LIKELY_BENIGN
-
notBenignOrLikelyBenign
public boolean notBenignOrLikelyBenign()- Returns:
false
if the significance is one ofBENIGN
,LIKELY_BENIGN
, orBENIGN_OR_LIKELY_BENIGN
-