Enum TagCategory
- java.lang.Object
-
- java.lang.Enum<TagCategory>
-
- de.gwdg.metadataqa.marc.definition.tags.TagCategory
-
- All Implemented Interfaces:
Serializable,Comparable<TagCategory>
public enum TagCategory extends Enum<TagCategory>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetId()StringgetLabel()static StringgetLabel(String packageName)static TagCategorygetPackage(String packageName)StringgetPackageName()StringgetRange()booleanisPartOfMarcCore()static TagCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static TagCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
tags00x
public static final TagCategory tags00x
-
tags01x
public static final TagCategory tags01x
-
tags1xx
public static final TagCategory tags1xx
-
tags20x
public static final TagCategory tags20x
-
tags25x
public static final TagCategory tags25x
-
tags3xx
public static final TagCategory tags3xx
-
tags4xx
public static final TagCategory tags4xx
-
tags5xx
public static final TagCategory tags5xx
-
tags6xx
public static final TagCategory tags6xx
-
tags70x
public static final TagCategory tags70x
-
tags76x
public static final TagCategory tags76x
-
tags80x
public static final TagCategory tags80x
-
tags84x
public static final TagCategory tags84x
-
holdings
public static final TagCategory holdings
-
oclc
public static final TagCategory oclc
-
dnb
public static final TagCategory dnb
-
fennica
public static final TagCategory fennica
-
gent
public static final TagCategory gent
-
szte
public static final TagCategory szte
-
nkcr
public static final TagCategory nkcr
-
bl
public static final TagCategory bl
-
other
public static final TagCategory other
-
-
Method Detail
-
values
public static TagCategory[] 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 (TagCategory c : TagCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TagCategory 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
-
getPackage
public static TagCategory getPackage(String packageName)
-
getPackageName
public String getPackageName()
-
getLabel
public String getLabel()
-
getRange
public String getRange()
-
isPartOfMarcCore
public boolean isPartOfMarcCore()
-
getId
public int getId()
-
-