Package cdc.enums
Enum Class DagFeature
- All Implemented Interfaces:
Serializable,Comparable<DagFeature>,Constable
Features that can be supported by an implementation.
- Author:
- Damien Carbonne
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDoes the implementation support changing content (name, ...)?Does the implementation support value creation?Does the implementation support locking?Does the implementation support value removal?Does the implementation support changing value parenting? -
Method Summary
Modifier and TypeMethodDescriptionstatic DagFeatureReturns the enum constant of this class with the specified name.static DagFeature[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOCKING
Does the implementation support locking? -
REMOVAL
Does the implementation support value removal? -
CREATION
Does the implementation support value creation? -
CONTENT_CHANGE
Does the implementation support changing content (name, ...)? -
REPARENTING
Does the implementation support changing value parenting?
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-