Package cdc.enums

Enum Class DagFeature

All Implemented Interfaces:
Serializable, Comparable<DagFeature>, Constable

public enum DagFeature extends Enum<DagFeature>
Features that can be supported by an implementation.
Author:
Damien Carbonne
  • Enum Constant Details

    • LOCKING

      public static final DagFeature LOCKING
      Does the implementation support locking?
    • REMOVAL

      public static final DagFeature REMOVAL
      Does the implementation support value removal?
    • CREATION

      public static final DagFeature CREATION
      Does the implementation support value creation?
    • CONTENT_CHANGE

      public static final DagFeature CONTENT_CHANGE
      Does the implementation support changing content (name, ...)?
    • REPARENTING

      public static final DagFeature REPARENTING
      Does the implementation support changing value parenting?
  • Method Details

    • values

      public static DagFeature[] 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

      public static DagFeature valueOf(String name)
      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 name
      NullPointerException - if the argument is null