Enum GeoSearchField
- java.lang.Object
-
- java.lang.Enum<GeoSearchField>
-
- ubic.gemma.core.loader.expression.geo.service.GeoSearchField
-
- All Implemented Interfaces:
Serializable
,Comparable<GeoSearchField>
public enum GeoSearchField extends Enum<GeoSearchField>
Enumeration of possible fields for searching GEO records.See Querying GEO DataSets and GEO Profiles which has a table of all available fields.
- Author:
- poirigui
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
This is the default if omitted.AUTHOR
DATASET_TYPE
DESCRIPTION
ENTRY_TYPE
FILTER
GEO_ACCESSION
MESH_TERMS
NUMBER_OF_PLATFORM_PROBES
NUMBER_OF_SAMPLES
ORGANISM
PLATFORM_TECHNOLOGY_TYPE
PROJECT
PUBLICATION_DATE
RELATED_PLATFORMS
RELATED_SERIES
REPORTER_IDENTIFIER
SAMPLE_SOURCE
SAMPLE_TYPE
SAMPLE_VALUE_TYPE
SUBMITTER_INSTUTUTE
SUBSET_DESCRIPTION
SUBSET_VARIABLE_TYPE
SUPPLEMENTARY_FILES
TAG_LENGTH
TITLE
UPDATE_DATE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlias()
String
toString()
static GeoSearchField
valueOf(String name)
Returns the enum constant of this type with the specified name.static GeoSearchField[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final GeoSearchField ALL
This is the default if omitted.
-
AUTHOR
public static final GeoSearchField AUTHOR
-
DATASET_TYPE
public static final GeoSearchField DATASET_TYPE
-
DESCRIPTION
public static final GeoSearchField DESCRIPTION
-
ENTRY_TYPE
public static final GeoSearchField ENTRY_TYPE
-
FILTER
public static final GeoSearchField FILTER
-
GEO_ACCESSION
public static final GeoSearchField GEO_ACCESSION
-
MESH_TERMS
public static final GeoSearchField MESH_TERMS
-
NUMBER_OF_PLATFORM_PROBES
public static final GeoSearchField NUMBER_OF_PLATFORM_PROBES
-
NUMBER_OF_SAMPLES
public static final GeoSearchField NUMBER_OF_SAMPLES
-
ORGANISM
public static final GeoSearchField ORGANISM
-
PLATFORM_TECHNOLOGY_TYPE
public static final GeoSearchField PLATFORM_TECHNOLOGY_TYPE
-
PROJECT
public static final GeoSearchField PROJECT
-
PUBLICATION_DATE
public static final GeoSearchField PUBLICATION_DATE
-
RELATED_PLATFORMS
public static final GeoSearchField RELATED_PLATFORMS
-
RELATED_SERIES
public static final GeoSearchField RELATED_SERIES
-
REPORTER_IDENTIFIER
public static final GeoSearchField REPORTER_IDENTIFIER
-
SAMPLE_SOURCE
public static final GeoSearchField SAMPLE_SOURCE
-
SAMPLE_TYPE
public static final GeoSearchField SAMPLE_TYPE
-
SAMPLE_VALUE_TYPE
public static final GeoSearchField SAMPLE_VALUE_TYPE
-
SUBMITTER_INSTUTUTE
public static final GeoSearchField SUBMITTER_INSTUTUTE
-
SUBSET_DESCRIPTION
public static final GeoSearchField SUBSET_DESCRIPTION
-
SUBSET_VARIABLE_TYPE
public static final GeoSearchField SUBSET_VARIABLE_TYPE
-
SUPPLEMENTARY_FILES
public static final GeoSearchField SUPPLEMENTARY_FILES
-
TAG_LENGTH
public static final GeoSearchField TAG_LENGTH
-
TITLE
public static final GeoSearchField TITLE
-
UPDATE_DATE
public static final GeoSearchField UPDATE_DATE
-
-
Method Detail
-
values
public static GeoSearchField[] 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 (GeoSearchField c : GeoSearchField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeoSearchField 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
-
getAlias
public String getAlias()
-
toString
public String toString()
- Overrides:
toString
in classEnum<GeoSearchField>
-
-