Package org.gbif.dwc.terms
Enum GbifInternalTerm
- java.lang.Object
-
- java.lang.Enum<GbifInternalTerm>
-
- org.gbif.dwc.terms.GbifInternalTerm
-
- All Implemented Interfaces:
Serializable
,Comparable<GbifInternalTerm>
,AlternativeNames
,Term
public enum GbifInternalTerm extends Enum<GbifInternalTerm> implements Term, AlternativeNames
Internal GBIF terms used for processing, fragmenting, crawling, ... These are not exposed in downloads or the public API.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]
alternativeNames()
boolean
isClass()
Informs if a term is generally used as a class term, i.e.URI
namespace()
The namespace the terms are in.String
prefix()
A unique standard prefix representing the namespace.String
simpleName()
The simple term name without any namespace or paths.String
toString()
static GbifInternalTerm
valueOf(String name)
Returns the enum constant of this type with the specified name.static GbifInternalTerm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
-
Methods inherited from interface org.gbif.dwc.terms.Term
prefixedName, qualifiedName
-
-
-
-
Enum Constant Detail
-
identifierCount
public static final GbifInternalTerm identifierCount
-
crawlId
public static final GbifInternalTerm crawlId
-
fragment
public static final GbifInternalTerm fragment
-
fragmentHash
public static final GbifInternalTerm fragmentHash
-
fragmentCreated
public static final GbifInternalTerm fragmentCreated
-
xmlSchema
public static final GbifInternalTerm xmlSchema
-
publishingOrgKey
public static final GbifInternalTerm publishingOrgKey
-
unitQualifier
public static final GbifInternalTerm unitQualifier
-
networkKey
public static final GbifInternalTerm networkKey
-
installationKey
public static final GbifInternalTerm installationKey
-
programmeAcronym
public static final GbifInternalTerm programmeAcronym
-
collectionKey
public static final GbifInternalTerm collectionKey
-
institutionKey
public static final GbifInternalTerm institutionKey
-
hostingOrganizationKey
public static final GbifInternalTerm hostingOrganizationKey
-
isInCluster
public static final GbifInternalTerm isInCluster
-
dwcaExtension
public static final GbifInternalTerm dwcaExtension
-
datasetTitle
public static final GbifInternalTerm datasetTitle
-
eventDateGte
public static final GbifInternalTerm eventDateGte
-
eventDateLte
public static final GbifInternalTerm eventDateLte
-
parentEventGbifId
public static final GbifInternalTerm parentEventGbifId
-
-
Method Detail
-
values
public static GbifInternalTerm[] 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 (GbifInternalTerm c : GbifInternalTerm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GbifInternalTerm 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
-
simpleName
public String simpleName()
Description copied from interface:Term
The simple term name without any namespace or paths. For example scientificName.- Specified by:
simpleName
in interfaceTerm
-
toString
public String toString()
- Overrides:
toString
in classEnum<GbifInternalTerm>
-
alternativeNames
public String[] alternativeNames()
- Specified by:
alternativeNames
in interfaceAlternativeNames
- Returns:
- array of simple, alternative term names
-
isClass
public boolean isClass()
Description copied from interface:Term
Informs if a term is generally used as a class term, i.e. defining rowTypes not properties. For example VernacularName, Taxon or Occurrence
-
prefix
public String prefix()
Description copied from interface:Term
A unique standard prefix representing the namespace. For example dwc.
-
-