Enum F3ControlGroup
- java.lang.Object
-
- java.lang.Enum<F3ControlGroup>
-
- org.fcrepo.migration.validator.impl.F3ControlGroup
-
- All Implemented Interfaces:
Serializable,Comparable<F3ControlGroup>
public enum F3ControlGroup extends Enum<F3ControlGroup>
Control Groups for Fedora3 X - Inline XML M - Managed E - Externally Referenced R - Redirect Referenced- Author:
- mikejritter
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXTERNALLY_REFERENCEDINLINE_XMLMANAGEDREDIRECT_REFERENCED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static F3ControlGroupfromString(String controlGroup)static F3ControlGroupvalueOf(String name)Returns the enum constant of this type with the specified name.static F3ControlGroup[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INLINE_XML
public static final F3ControlGroup INLINE_XML
-
MANAGED
public static final F3ControlGroup MANAGED
-
EXTERNALLY_REFERENCED
public static final F3ControlGroup EXTERNALLY_REFERENCED
-
REDIRECT_REFERENCED
public static final F3ControlGroup REDIRECT_REFERENCED
-
-
Method Detail
-
values
public static F3ControlGroup[] 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 (F3ControlGroup c : F3ControlGroup.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static F3ControlGroup 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
-
fromString
public static F3ControlGroup fromString(String controlGroup)
-
-