Package org.gbif.dwc.terms
Enum AcTerm
- java.lang.Object
-
- java.lang.Enum<AcTerm>
-
- org.gbif.dwc.terms.AcTerm
-
- All Implemented Interfaces:
Serializable
,Comparable<AcTerm>
,AlternativeNames
,Term
public enum AcTerm extends Enum<AcTerm> implements Term, AlternativeNames
All Audiovisual Core terms with namespace http://rs.tdwg.org/ac/terms/. See- http://rs.tdwg.org/ac/doc/termlist/2022-02-23 verison implemented here
- https://ac.tdwg.org/termlist/
-
-
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 AcTerm
valueOf(String name)
Returns the enum constant of this type with the specified name.static AcTerm[]
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
-
Multimedia
public static final AcTerm Multimedia
-
RegionOfInterest
public static final AcTerm RegionOfInterest
-
ServiceAccessPoint
public static final AcTerm ServiceAccessPoint
-
associatedObservationReference
public static final AcTerm associatedObservationReference
-
associatedSpecimenReference
public static final AcTerm associatedSpecimenReference
-
attributionLinkURL
public static final AcTerm attributionLinkURL
-
attributionLogoURL
public static final AcTerm attributionLogoURL
-
captureDevice
public static final AcTerm captureDevice
-
commenterLiteral
public static final AcTerm commenterLiteral
-
derivedFrom
public static final AcTerm derivedFrom
-
digitizationDate
public static final AcTerm digitizationDate
-
endTimestamp
public static final AcTerm endTimestamp
-
fundingAttribution
public static final AcTerm fundingAttribution
-
furtherInformationURL
public static final AcTerm furtherInformationURL
-
hashFunction
public static final AcTerm hashFunction
-
hasServiceAccessPoint
public static final AcTerm hasServiceAccessPoint
-
heightFrac
public static final AcTerm heightFrac
-
IDofContainingCollection
public static final AcTerm IDofContainingCollection
-
licenseLogoURL
public static final AcTerm licenseLogoURL
-
licensingException
public static final AcTerm licensingException
-
mediaDuration
public static final AcTerm mediaDuration
-
mediaSpeed
public static final AcTerm mediaSpeed
-
metadataCreator
public static final AcTerm metadataCreator
-
metadataCreatorLiteral
public static final AcTerm metadataCreatorLiteral
-
metadataLanguage
public static final AcTerm metadataLanguage
-
metadataLanguageLiteral
public static final AcTerm metadataLanguageLiteral
-
metadataProvider
public static final AcTerm metadataProvider
-
metadataProviderLiteral
public static final AcTerm metadataProviderLiteral
-
otherScientificName
public static final AcTerm otherScientificName
-
physicalSetting
public static final AcTerm physicalSetting
-
providerID
public static final AcTerm providerID
-
providerLiteral
public static final AcTerm providerLiteral
-
providerManagedID
public static final AcTerm providerManagedID
-
relatedResourceID
public static final AcTerm relatedResourceID
-
resourceCreationTechnique
public static final AcTerm resourceCreationTechnique
-
reviewerComments
public static final AcTerm reviewerComments
-
reviewerLiteral
public static final AcTerm reviewerLiteral
-
serviceExpectation
public static final AcTerm serviceExpectation
-
startTimestamp
public static final AcTerm startTimestamp
-
subjectCategoryVocabulary
public static final AcTerm subjectCategoryVocabulary
-
subjectOrientation
public static final AcTerm subjectOrientation
-
subjectOrientationLiteral
public static final AcTerm subjectOrientationLiteral
-
subjectPart
public static final AcTerm subjectPart
-
subjectPartLiteral
public static final AcTerm subjectPartLiteral
-
subtypeLiteral
public static final AcTerm subtypeLiteral
-
taxonCount
public static final AcTerm taxonCount
-
taxonCoverage
public static final AcTerm taxonCoverage
-
variantDescription
public static final AcTerm variantDescription
-
variantLiteral
public static final AcTerm variantLiteral
-
-
Method Detail
-
values
public static AcTerm[] 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 (AcTerm c : AcTerm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AcTerm 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
-
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.
-
-