Package org.gbif.dwc.terms
Enum PhotoshopTerm
- java.lang.Object
-
- java.lang.Enum<PhotoshopTerm>
-
- org.gbif.dwc.terms.PhotoshopTerm
-
- All Implemented Interfaces:
Serializable,Comparable<PhotoshopTerm>,AlternativeNames,Term
public enum PhotoshopTerm extends Enum<PhotoshopTerm> implements Term, AlternativeNames, Serializable
All Adobe Photoshop terms with namespace http://ns.adobe.com/photoshop/1.0/.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Credit
-
Field Summary
Fields Modifier and Type Field Description String[]alternatives
-
Method Summary
All 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 PhotoshopTermvalueOf(String name)Returns the enum constant of this type with the specified name.static PhotoshopTerm[]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
-
Credit
public static final PhotoshopTerm Credit
-
-
Field Detail
-
alternatives
public final String[] alternatives
-
-
Method Detail
-
values
public static PhotoshopTerm[] 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 (PhotoshopTerm c : PhotoshopTerm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PhotoshopTerm 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<PhotoshopTerm>
-
simpleName
public String simpleName()
Description copied from interface:TermThe simple term name without any namespace or paths. For example scientificName.- Specified by:
simpleNamein interfaceTerm
-
alternativeNames
public String[] alternativeNames()
- Specified by:
alternativeNamesin interfaceAlternativeNames- Returns:
- array of simple, alternative term names
-
isClass
public 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
-
prefix
public String prefix()
Description copied from interface:TermA unique standard prefix representing the namespace. For example dwc.
-
-