Package org.gbif.dwc.terms
Enum XmpRightsTerm
- java.lang.Object
- 
- java.lang.Enum<XmpRightsTerm>
- 
- org.gbif.dwc.terms.XmpRightsTerm
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<XmpRightsTerm>,- AlternativeNames,- Term
 
 public enum XmpRightsTerm extends Enum<XmpRightsTerm> implements Term, AlternativeNames Terms for Adobe XMP have URIs that are not resolvable. Instead, visit XMP Specification Part 1, Sec 8.4 for further documentation. These terms are used by the Audubon Core standard.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description OwnerUsageTermsWebStatement
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]alternativeNames()booleanisClass()Informs if a term is generally used as a class term, i.e.URInamespace()The namespace the terms are in.Stringprefix()A unique standard prefix representing the namespace.StringsimpleName()The simple term name without any namespace or paths.StringtoString()static XmpRightsTermvalueOf(String name)Returns the enum constant of this type with the specified name.static XmpRightsTerm[]values()Returns an array containing the constants of this enum type, in the order they are declared.- 
Methods inherited from class java.lang.EnumcompareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 - 
Methods inherited from interface org.gbif.dwc.terms.TermprefixedName, qualifiedName
 
- 
 
- 
- 
- 
Enum Constant Detail- 
Ownerpublic static final XmpRightsTerm Owner 
 - 
UsageTermspublic static final XmpRightsTerm UsageTerms 
 - 
WebStatementpublic static final XmpRightsTerm WebStatement 
 
- 
 - 
Method Detail- 
valuespublic static XmpRightsTerm[] 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 (XmpRightsTerm c : XmpRightsTerm.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static XmpRightsTerm 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 name
- NullPointerException- if the argument is null
 
 - 
simpleNamepublic String simpleName() Description copied from interface:TermThe simple term name without any namespace or paths. For example scientificName.- Specified by:
- simpleNamein interface- Term
 
 - 
alternativeNamespublic String[] alternativeNames() - Specified by:
- alternativeNamesin interface- AlternativeNames
- Returns:
- array of simple, alternative term names
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<XmpRightsTerm>
 
 - 
isClasspublic boolean isClass() Description copied from interface:TermInforms if a term is generally used as a class term, i.e. defining rowTypes not properties. For example VernacularName, Taxon or Occurrence
 - 
prefixpublic String prefix() Description copied from interface:TermA unique standard prefix representing the namespace. For example dwc.
 
- 
 
-