Package org.molgenis.vibe.core.formats
Enum GeneDiseaseCombinationType
- java.lang.Object
-
- java.lang.Enum<GeneDiseaseCombinationType>
-
- org.molgenis.vibe.core.formats.GeneDiseaseCombinationType
-
- All Implemented Interfaces:
Serializable,Comparable<GeneDiseaseCombinationType>,EnumTypeDefiner
public enum GeneDiseaseCombinationType extends Enum<GeneDiseaseCombinationType> implements EnumTypeDefiner
Based on: http://semanticscience.org/ontology/sio.owl (which is licensed under http://creativecommons.org/licenses/by/4.0/) Please refer to http://www.disgenet.org/ds/DisGeNET/html/images/ontology.svg for the Ontology overview.
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description static GeneDiseaseCombinationTypeROOTThe rootGeneDiseaseCombinationTypeof all association types available in this enum
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFormattedId()StringgetId()static GeneDiseaseCombinationTyperetrieve(String sio)static GeneDiseaseCombinationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static GeneDiseaseCombinationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENE_DISEASE
public static final GeneDiseaseCombinationType GENE_DISEASE
-
THERAPEUTIC
public static final GeneDiseaseCombinationType THERAPEUTIC
-
BIOMARKER
public static final GeneDiseaseCombinationType BIOMARKER
-
GENOMIC_ALTERATION
public static final GeneDiseaseCombinationType GENOMIC_ALTERATION
-
ALTERED_EXPRESSION
public static final GeneDiseaseCombinationType ALTERED_EXPRESSION
-
POST_TRANSLATIONAL_MODIFICATION
public static final GeneDiseaseCombinationType POST_TRANSLATIONAL_MODIFICATION
-
CHROMOSOMAL_REARRANGEMENT
public static final GeneDiseaseCombinationType CHROMOSOMAL_REARRANGEMENT
-
GENETIC_VARIATION
public static final GeneDiseaseCombinationType GENETIC_VARIATION
-
FUSION_GENE
public static final GeneDiseaseCombinationType FUSION_GENE
-
SUSCEPTIBILITY_MUTATION
public static final GeneDiseaseCombinationType SUSCEPTIBILITY_MUTATION
-
CASUAL_MUTATION
public static final GeneDiseaseCombinationType CASUAL_MUTATION
-
MODIFYING_MUTATION
public static final GeneDiseaseCombinationType MODIFYING_MUTATION
-
SOMATIC_CASUAL_MUTATION
public static final GeneDiseaseCombinationType SOMATIC_CASUAL_MUTATION
-
GERMLINE_CASUAL_MUTATION
public static final GeneDiseaseCombinationType GERMLINE_CASUAL_MUTATION
-
SOMATIC_MODIFYING_MUTATION
public static final GeneDiseaseCombinationType SOMATIC_MODIFYING_MUTATION
-
GERMLINE_MODIFYING_MUTATION
public static final GeneDiseaseCombinationType GERMLINE_MODIFYING_MUTATION
-
-
Field Detail
-
ROOT
public static final GeneDiseaseCombinationType ROOT
The rootGeneDiseaseCombinationTypeof all association types available in this enum
-
-
Method Detail
-
values
public static GeneDiseaseCombinationType[] 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 (GeneDiseaseCombinationType c : GeneDiseaseCombinationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeneDiseaseCombinationType 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
-
getId
public String getId()
- Specified by:
getIdin interfaceEnumTypeDefiner
-
getFormattedId
public String getFormattedId()
-
retrieve
public static GeneDiseaseCombinationType retrieve(String sio)
-
-