Enum Class DiffIterateOperFlag

Object
Enum<DiffIterateOperFlag>
com.tailf.conf.DiffIterateOperFlag
All Implemented Interfaces:
Serializable, Comparable<DiffIterateOperFlag>, Constable

public enum DiffIterateOperFlag extends Enum<DiffIterateOperFlag>
  • Enum Constant Details

    • MOP_CREATED

      public static final DiffIterateOperFlag MOP_CREATED
      Specifies that list entry, presence container, or leaf of type empty given has been created.
    • MOP_DELETED

      public static final DiffIterateOperFlag MOP_DELETED
      The list entry, presence container, or optional leaf has been deleted. If the subscription was triggered because an ancestor was deleted, the iterate method will not called at all if the delete was above the subscription point. However if the flag DiffIterateFlags.ITER_WANT_ANCESTOR_DELETE is passed to CdbSubscription.diffIterate(int,CdbDiffIterate,EnumSet,Object) then deletes that trigger a descendant subscription will also generate a call to iterate.
    • MOP_MODIFIED

      public static final DiffIterateOperFlag MOP_MODIFIED
      A descendant of the list entry has been modified.
    • MOP_VALUE_SET

      public static final DiffIterateOperFlag MOP_VALUE_SET
      The value of the leaf given by the path has been set to a new value.
    • MOP_MOVED_AFTER

      public static final DiffIterateOperFlag MOP_MOVED_AFTER
      The list entry given by path, in an ordered-by user list, has been moved. If the new value is null, the entry has been moved first in the list, otherwise it has been moved after the entry given by new value. In this case new is a pointer to an array of key values identifying an entry in the list. The array is terminated with an element that has type C_NOEXISTS.
    • MOP_ATTR_SET

      public static final DiffIterateOperFlag MOP_ATTR_SET
      MaapiDiffIterate only
  • Method Details

    • values

      public static DiffIterateOperFlag[] 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 DiffIterateOperFlag 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
    • getValue

      public int getValue()
    • valueOf

      public static DiffIterateOperFlag valueOf(int i)
      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:
      i - 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