Enum FRBRFunction
- java.lang.Object
-
- java.lang.Enum<FRBRFunction>
-
- de.gwdg.metadataqa.marc.definition.FRBRFunction
-
- All Implemented Interfaces:
Serializable,Comparable<FRBRFunction>
public enum FRBRFunction extends Enum<FRBRFunction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DiscoveryDiscoveryIdentifyDiscoveryObtainDiscoverySearchDiscoverySelectManagementManagementDisplayManagementIdentifyManagementProcessManagementSortUseUseInterpretUseManageUseOperateUseRestrict
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()FRBRFunctiongetParent()StringgetPath()static FRBRFunctionvalueOf(String name)Returns the enum constant of this type with the specified name.static FRBRFunction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Discovery
public static final FRBRFunction Discovery
-
DiscoverySearch
public static final FRBRFunction DiscoverySearch
-
DiscoveryIdentify
public static final FRBRFunction DiscoveryIdentify
-
DiscoverySelect
public static final FRBRFunction DiscoverySelect
-
DiscoveryObtain
public static final FRBRFunction DiscoveryObtain
-
Use
public static final FRBRFunction Use
-
UseRestrict
public static final FRBRFunction UseRestrict
-
UseManage
public static final FRBRFunction UseManage
-
UseOperate
public static final FRBRFunction UseOperate
-
UseInterpret
public static final FRBRFunction UseInterpret
-
Management
public static final FRBRFunction Management
-
ManagementIdentify
public static final FRBRFunction ManagementIdentify
-
ManagementProcess
public static final FRBRFunction ManagementProcess
-
ManagementSort
public static final FRBRFunction ManagementSort
-
ManagementDisplay
public static final FRBRFunction ManagementDisplay
-
-
Method Detail
-
values
public static FRBRFunction[] 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 (FRBRFunction c : FRBRFunction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FRBRFunction 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
-
getParent
public FRBRFunction getParent()
-
getLabel
public String getLabel()
-
getPath
public String getPath()
-
-