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
-
TAGS_00X
public static final TagCategory TAGS_00X
-
TAGS_01X
public static final TagCategory TAGS_01X
-
TAGS_1XX
public static final TagCategory TAGS_1XX
-
TAGS_20X
public static final TagCategory TAGS_20X
-
TAGS_25X
public static final TagCategory TAGS_25X
-
TAGS_3XX
public static final TagCategory TAGS_3XX
-
TAGS_4XX
public static final TagCategory TAGS_4XX
-
TAGS_5XX
public static final TagCategory TAGS_5XX
-
TAGS_6XX
public static final TagCategory TAGS_6XX
-
TAGS_70X
public static final TagCategory TAGS_70X
-
TAGS_76X
public static final TagCategory TAGS_76X
-
TAGS_80X
public static final TagCategory TAGS_80X
-
TAGS_84X
public static final TagCategory TAGS_84X
-
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
-
UVA
public static final TagCategory UVA
-
B3KAT
public static final TagCategory B3KAT
-
PICA_0
public static final TagCategory PICA_0
-
PICA_1
public static final TagCategory PICA_1
-
PICA_2
public static final TagCategory PICA_2
-
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()
-
-