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