Package org.gbif.api.vocabulary
Enum NomenclaturalCode
- java.lang.Object
- 
- java.lang.Enum<NomenclaturalCode>
- 
- org.gbif.api.vocabulary.NomenclaturalCode
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<NomenclaturalCode>
 
 @Deprecated public enum NomenclaturalCode extends Enum<NomenclaturalCode> Deprecated.Enumeration representing the different nomenclatoral codes found in biology for scientific names. Nomenclature codes or codes of nomenclature are the various rulebooks that govern biological taxonomic nomenclature, each in their own broad field of organisms. To an end-user who only deals with names of species, with some awareness that species are assignable to families, it may not be noticeable that there is more than one code, but beyond this basic level these are rather different in the way they work.- See Also:
- Nomenclature codes (Wikipedia) Deprecated. Please use the name parser enum instead. https://github.com/gbif/name-parser/blob/master/name-parser-api/src/main/java/org/gbif/nameparser/api/NomCode.java
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BACTERIALDeprecated.BIOCODEDeprecated.BOTANICALDeprecated.CULTIVARSDeprecated.PHYLOCODEDeprecated.PHYTOSOCIOLOGYDeprecated.VIRUSDeprecated.ZOOLOGICALDeprecated.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetAcronym()Deprecated.StringgetLink()Deprecated.StringgetTitle()Deprecated.static NomenclaturalCodevalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static NomenclaturalCode[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
BACTERIALpublic static final NomenclaturalCode BACTERIAL Deprecated.
 - 
BOTANICALpublic static final NomenclaturalCode BOTANICAL Deprecated.
 - 
BIOCODEpublic static final NomenclaturalCode BIOCODE Deprecated.
 - 
CULTIVARSpublic static final NomenclaturalCode CULTIVARS Deprecated.
 - 
PHYLOCODEpublic static final NomenclaturalCode PHYLOCODE Deprecated.
 - 
PHYTOSOCIOLOGYpublic static final NomenclaturalCode PHYTOSOCIOLOGY Deprecated.
 - 
VIRUSpublic static final NomenclaturalCode VIRUS Deprecated.
 - 
ZOOLOGICALpublic static final NomenclaturalCode ZOOLOGICAL Deprecated.
 
- 
 - 
Method Detail- 
valuespublic static NomenclaturalCode[] values() Deprecated.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 (NomenclaturalCode c : NomenclaturalCode.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static NomenclaturalCode valueOf(String name) Deprecated.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
 
 - 
getAcronympublic String getAcronym() Deprecated.
 
- 
 
-