Package de.gwdg.metadataqa.marc.analysis
Enum AuthorityCategory
- java.lang.Object
-
- java.lang.Enum<AuthorityCategory>
-
- de.gwdg.metadataqa.marc.analysis.AuthorityCategory
-
- All Implemented Interfaces:
Serializable,Comparable<AuthorityCategory>
public enum AuthorityCategory extends Enum<AuthorityCategory>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthorityCategoryget(String tag)intgetId()StringgetLabel()List<String>getTags()StringtoString()static AuthorityCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthorityCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSONAL
public static final AuthorityCategory PERSONAL
-
CORPORATE
public static final AuthorityCategory CORPORATE
-
MEETING
public static final AuthorityCategory MEETING
-
GEOGRAPHIC
public static final AuthorityCategory GEOGRAPHIC
-
TITLES
public static final AuthorityCategory TITLES
-
OTHER
public static final AuthorityCategory OTHER
-
-
Method Detail
-
values
public static AuthorityCategory[] 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 (AuthorityCategory c : AuthorityCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthorityCategory 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()
-
getId
public int getId()
-
get
public static AuthorityCategory get(String tag)
-
toString
public String toString()
- Overrides:
toStringin classEnum<AuthorityCategory>
-
-