Package pl.edu.icm.unity.exceptions
Enum IllegalFormContentsException.Category
- java.lang.Object
-
- java.lang.Enum<IllegalFormContentsException.Category>
-
- pl.edu.icm.unity.exceptions.IllegalFormContentsException.Category
-
- All Implemented Interfaces:
Serializable
,Comparable<IllegalFormContentsException.Category>
- Enclosing class:
- IllegalFormContentsException
public static enum IllegalFormContentsException.Category extends Enum<IllegalFormContentsException.Category>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGREEMENT
ATTRIBUTE
CREDENTIAL
GROUP
IDENTITY
POLICY_AGREEMENT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IllegalFormContentsException.Category
valueOf(String name)
Returns the enum constant of this type with the specified name.static IllegalFormContentsException.Category[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CREDENTIAL
public static final IllegalFormContentsException.Category CREDENTIAL
-
AGREEMENT
public static final IllegalFormContentsException.Category AGREEMENT
-
POLICY_AGREEMENT
public static final IllegalFormContentsException.Category POLICY_AGREEMENT
-
ATTRIBUTE
public static final IllegalFormContentsException.Category ATTRIBUTE
-
IDENTITY
public static final IllegalFormContentsException.Category IDENTITY
-
GROUP
public static final IllegalFormContentsException.Category GROUP
-
-
Method Detail
-
values
public static IllegalFormContentsException.Category[] 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 (IllegalFormContentsException.Category c : IllegalFormContentsException.Category.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IllegalFormContentsException.Category 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
-
-