summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/funcdata/TopDownTransformResult.java
diff options
context:
space:
mode:
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcdata/TopDownTransformResult.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/funcdata/TopDownTransformResult.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcdata/TopDownTransformResult.java b/BJC-Utils2/src/main/java/bjc/utils/funcdata/TopDownTransformResult.java
deleted file mode 100644
index 332c3c1..0000000
--- a/BJC-Utils2/src/main/java/bjc/utils/funcdata/TopDownTransformResult.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package bjc.utils.funcdata;
-
-/**
- * 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 it's children
- */
- SKIP,
- /**
- * Transform this node, and don't touch its children
- */
- TRANSFORM,
- /**
- * Ignore this node, and traverse its children
- */
- PASSTHROUGH,
- /**
- * Traverse this nodes children, then transform it
- */
- PUSHDOWN,
- /**
- * Transform this node, then traverse its children
- */
- PULLUP;
-}