Package de.gwdg.metadataqa.marc.analysis
Enum ThompsonTraillFields
- java.lang.Object
-
- java.lang.Enum<ThompsonTraillFields>
-
- de.gwdg.metadataqa.marc.analysis.ThompsonTraillFields
-
- All Implemented Interfaces:
Serializable,Comparable<ThompsonTraillFields>
public enum ThompsonTraillFields extends Enum<ThompsonTraillFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALTERNATIVE_TITLESAUTHORSCONTRIBUTORSCOUNTRY_OF_PUBLICATIONDATE_008DATE_26XEDITIONFASTGNDIDISBNLANGUAGE_OF_CATALOGINGLANGUAGE_OF_RESOURCELC_NLMLOCMESHONLINEOTHERRDASERIESTOCTOTAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()StringgetMachine()booleanisClassification()StringtoString()static ThompsonTraillFieldsvalueOf(String name)Returns the enum constant of this type with the specified name.static ThompsonTraillFields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final ThompsonTraillFields ID
-
ISBN
public static final ThompsonTraillFields ISBN
-
AUTHORS
public static final ThompsonTraillFields AUTHORS
-
ALTERNATIVE_TITLES
public static final ThompsonTraillFields ALTERNATIVE_TITLES
-
EDITION
public static final ThompsonTraillFields EDITION
-
CONTRIBUTORS
public static final ThompsonTraillFields CONTRIBUTORS
-
SERIES
public static final ThompsonTraillFields SERIES
-
TOC
public static final ThompsonTraillFields TOC
-
DATE_008
public static final ThompsonTraillFields DATE_008
-
DATE_26X
public static final ThompsonTraillFields DATE_26X
-
LC_NLM
public static final ThompsonTraillFields LC_NLM
-
LOC
public static final ThompsonTraillFields LOC
-
MESH
public static final ThompsonTraillFields MESH
-
FAST
public static final ThompsonTraillFields FAST
-
GND
public static final ThompsonTraillFields GND
-
OTHER
public static final ThompsonTraillFields OTHER
-
ONLINE
public static final ThompsonTraillFields ONLINE
-
LANGUAGE_OF_RESOURCE
public static final ThompsonTraillFields LANGUAGE_OF_RESOURCE
-
COUNTRY_OF_PUBLICATION
public static final ThompsonTraillFields COUNTRY_OF_PUBLICATION
-
LANGUAGE_OF_CATALOGING
public static final ThompsonTraillFields LANGUAGE_OF_CATALOGING
-
RDA
public static final ThompsonTraillFields RDA
-
TOTAL
public static final ThompsonTraillFields TOTAL
-
-
Method Detail
-
values
public static ThompsonTraillFields[] 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 (ThompsonTraillFields c : ThompsonTraillFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThompsonTraillFields 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
-
getLabel
public String getLabel()
-
getMachine
public String getMachine()
-
isClassification
public boolean isClassification()
-
toString
public String toString()
- Overrides:
toStringin classEnum<ThompsonTraillFields>
-
-