Package cdc.enums

Enum DagFeature

    • Enum Constant Detail

      • 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 Detail

      • values

        public static DagFeature[] 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 (DagFeature c : DagFeature.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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