summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/data/TopDownTransformResult.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/src/main/java/bjc/utils/data/TopDownTransformResult.java')
-rw-r--r--base/src/main/java/bjc/utils/data/TopDownTransformResult.java26
1 files changed, 7 insertions, 19 deletions
diff --git a/base/src/main/java/bjc/utils/data/TopDownTransformResult.java b/base/src/main/java/bjc/utils/data/TopDownTransformResult.java
index ed41eae..3907df2 100644
--- a/base/src/main/java/bjc/utils/data/TopDownTransformResult.java
+++ b/base/src/main/java/bjc/utils/data/TopDownTransformResult.java
@@ -1,34 +1,22 @@
package bjc.utils.data;
/**
- * Represents the results for doing a top-down transform of a tree
+ * Represents the results for doing a top-down transform of a tree.
*
* @author ben
*
*/
public enum TopDownTransformResult {
- /**
- * Do not do anything to this node, and ignore its children
- */
+ /** Do not do anything to this node, and ignore its children. */
SKIP,
- /**
- * Transform this node, and don't touch its children
- */
+ /** Transform this node, and don't touch its children. */
TRANSFORM,
- /**
- * Transform this node, then do a top-down transform on the result
- */
+ /** Transform this node, then recursively transform the result. */
RTRANSFORM,
- /**
- * Ignore this node, and traverse its children
- */
+ /** Ignore this node, and traverse its children. */
PASSTHROUGH,
- /**
- * Traverse the nodes of this children, then transform it
- */
+ /** Traverse the nodes of this children, then transform it. */
PUSHDOWN,
- /**
- * Transform this node, then traverse its children
- */
+ /** Transform this node, then traverse its children. */
PULLUP;
}