com.aspose.words

Class VisitorAction

  • java.lang.Object
    • com.aspose.words.VisitorAction
public class VisitorAction 
extends java.lang.Object

Utility class containing constants. Allows the visitor to control the enumeration of nodes.

Field Summary
static final intCONTINUE = 0
The visitor requests the enumeration to continue.
static final intSKIP_THIS_NODE = 1
The visitor requests to skip the current node and continue enumeration.
static final intSTOP = 2
The visitor requests the enumeration of nodes to stop.
 

    • Field Detail

      • CONTINUE = 0

        public static final int CONTINUE
        The visitor requests the enumeration to continue.
      • SKIP_THIS_NODE = 1

        public static final int SKIP_THIS_NODE
        The visitor requests to skip the current node and continue enumeration.
      • STOP = 2

        public static final int STOP
        The visitor requests the enumeration of nodes to stop.