Enum QuadAction

java.lang.Object
java.lang.Enum<QuadAction>
org.apache.jena.sparql.core.QuadAction
All Implemented Interfaces:
Serializable, Comparable<QuadAction>, java.lang.constant.Constable

@Deprecated public enum QuadAction extends Enum<QuadAction>
Deprecated.
Do not use. To see changes to a dataset, use DatasetGraphWrapper to capture change events.
A QuadAction is record of a type of change to a DatasetGraph.

DatasetGraph are sets of quads. An add only affects the state of the DatasetGraph if a quad of the same value was not present, and a delete only affects the state of the DatasetGraph if a quad was present.

A QuadAction can be an ADD or DELETE, indicating a change to the DatasetGraph actually occured (this assumes checking is done - DatasetChanges generators may not check - see implementation for details). Otherwise a NO_ADD, NO_DELETE QuadAction is used.

  • Enum Constant Details

    • ADD

      public static final QuadAction ADD
      Deprecated.
    • DELETE

      public static final QuadAction DELETE
      Deprecated.
    • NO_ADD

      public static final QuadAction NO_ADD
      Deprecated.
    • NO_DELETE

      public static final QuadAction NO_DELETE
      Deprecated.
  • Field Details

    • label

      public final String label
      Deprecated.
  • Method Details

    • values

      public static QuadAction[] values()
      Deprecated.
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static QuadAction valueOf(String name)
      Deprecated.
      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