Enum Class DirectedGraphNode.PropertyUpdateFlag

java.lang.Object
java.lang.Enum<DirectedGraphNode.PropertyUpdateFlag>
com.calebleavell.jatui.core.DirectedGraphNode.PropertyUpdateFlag
All Implemented Interfaces:
Serializable, Comparable<DirectedGraphNode.PropertyUpdateFlag>, Constable
Enclosing interface:
DirectedGraphNode<P extends Enum<?>,A extends DirectedGraphNode<P,A,?>,T extends DirectedGraphNode<P,A,T>>

public static enum DirectedGraphNode.PropertyUpdateFlag extends Enum<DirectedGraphNode.PropertyUpdateFlag>

Specifies behavior for updating a property of this node.
When a recursive call to update a property is called, the flag for the property is checked.

The flags are:

  1. UPDATE: Update this node and continue the recursion
  2. UPDATE_THEN_HALT: Update this node but don't continue the recursion
  3. SKIP: Don't update this node but continue the recursion
  4. HALT: Don't update this node and don't continue the recursion
  • Enum Constant Details

  • Method Details

    • values

      public static DirectedGraphNode.PropertyUpdateFlag[] 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 DirectedGraphNode.PropertyUpdateFlag 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