summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/funcdata/FunctionalStringTokenizer.java
diff options
context:
space:
mode:
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcdata/FunctionalStringTokenizer.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/funcdata/FunctionalStringTokenizer.java36
1 files changed, 18 insertions, 18 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcdata/FunctionalStringTokenizer.java b/BJC-Utils2/src/main/java/bjc/utils/funcdata/FunctionalStringTokenizer.java
index 0e2d199..aa6fca3 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/funcdata/FunctionalStringTokenizer.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/funcdata/FunctionalStringTokenizer.java
@@ -111,6 +111,15 @@ public class FunctionalStringTokenizer {
}
/**
+ * Check if this tokenizer has more tokens
+ *
+ * @return Whether or not this tokenizer has more tokens
+ */
+ public boolean hasMoreTokens() {
+ return input.hasMoreTokens();
+ }
+
+ /**
* Return the next token from the tokenizer. Returns null if no more
* tokens are available
*
@@ -127,6 +136,15 @@ public class FunctionalStringTokenizer {
}
/**
+ * Convert this tokenizer into a list of strings
+ *
+ * @return This tokenizer, converted into a list of strings
+ */
+ public IFunctionalList<String> toList() {
+ return toList((String element) -> element);
+ }
+
+ /**
* Convert the contents of this tokenizer into a list. Consumes all of
* the input from this tokenizer.
*
@@ -154,22 +172,4 @@ public class FunctionalStringTokenizer {
return returnList;
}
-
- /**
- * Convert this tokenizer into a list of strings
- *
- * @return This tokenizer, converted into a list of strings
- */
- public IFunctionalList<String> toList() {
- return toList((String element) -> element);
- }
-
- /**
- * Check if this tokenizer has more tokens
- *
- * @return Whether or not this tokenizer has more tokens
- */
- public boolean hasMoreTokens() {
- return input.hasMoreTokens();
- }
}