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