public enum OmicsType extends Enum<OmicsType>
http://www.apache.org/licenses/LICENSE-2.0
==Overview==
This class
Created by ypriverol (ypriverol@gmail.com) on 22/01/2017.
| Enum Constant and Description |
|---|
GENOMICS |
INTERACTOMICS |
METABOLOMICS |
MULTIOMICS |
PHOSPHO_PROTEOMICS |
PROTEOMICS |
TRANSCRIPTOMICS |
UKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
getFullName() |
String |
getName() |
static OmicsType |
getOmicsType(String name) |
OmicsType[] |
getParentType() |
void |
setFullName(String fullName) |
void |
setName(String name) |
void |
setParentType(OmicsType[] parentType) |
static OmicsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OmicsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OmicsType PROTEOMICS
public static final OmicsType METABOLOMICS
public static final OmicsType GENOMICS
public static final OmicsType TRANSCRIPTOMICS
public static final OmicsType PHOSPHO_PROTEOMICS
public static final OmicsType INTERACTOMICS
public static final OmicsType MULTIOMICS
public static final OmicsType UKNOWN
public static OmicsType[] values()
for (OmicsType c : OmicsType.values()) System.out.println(c);
public static OmicsType 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 String getName()
public void setName(String name)
public String getFullName()
public void setFullName(String fullName)
public OmicsType[] getParentType()
public void setParentType(OmicsType[] parentType)
Copyright © 2019. All Rights Reserved.