Package org.gbif.dwc.terms
Enum IucnTerm
- java.lang.Object
-
- java.lang.Enum<IucnTerm>
-
- org.gbif.dwc.terms.IucnTerm
-
- All Implemented Interfaces:
Serializable
,Comparable<IucnTerm>
,AlternativeNames
,Term
public enum IucnTerm extends Enum<IucnTerm> implements Term, AlternativeNames
-
-
Enum Constant Summary
Enum Constants Enum Constant Description iucnRedListCategory
IUCN Red List Category or conservation status.threatStatus
Deprecated.this terms has been deprecated in favor of iucnRedListCategory.
-
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 IucnTerm
valueOf(String name)
Returns the enum constant of this type with the specified name.static IucnTerm[]
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
-
threatStatus
@Deprecated public static final IucnTerm threatStatus
Deprecated.this terms has been deprecated in favor of iucnRedListCategory.
-
iucnRedListCategory
public static final IucnTerm iucnRedListCategory
IUCN Red List Category or conservation status.
-
-
Method Detail
-
values
public static IucnTerm[] 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 (IucnTerm c : IucnTerm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IucnTerm 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
-
prefix
public String prefix()
Description copied from interface:Term
A unique standard prefix representing the namespace. For example dwc.
-
namespace
public URI namespace()
Description copied from interface:Term
The namespace the terms are in. Default implementations here expect the namespace to end with a slash.
-
-