com.hp.hpl.jena.sparql.core
Enum QuadAction

java.lang.Object
  extended by java.lang.Enum<QuadAction>
      extended by com.hp.hpl.jena.sparql.core.QuadAction
All Implemented Interfaces:
Serializable, Comparable<QuadAction>

public enum QuadAction
extends Enum<QuadAction>

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 Summary
ADD
           
DELETE
           
NO_ADD
           
NO_DELETE
           
 
Field Summary
 String label
           
 
Method Summary
static QuadAction valueOf(String name)
          Returns the enum constant of this type with the specified name.
static QuadAction[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADD

public static final QuadAction ADD

DELETE

public static final QuadAction DELETE

NO_ADD

public static final QuadAction NO_ADD

NO_DELETE

public static final QuadAction NO_DELETE
Field Detail

label

public final String label
Method Detail

values

public static QuadAction[] 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 (QuadAction c : QuadAction.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static QuadAction 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


Licenced under the Apache License, Version 2.0