diff options
| author | bjculkin <bjculkin@mix.wvu.edu> | 2017-03-17 08:34:57 -0400 |
|---|---|---|
| committer | bjculkin <bjculkin@mix.wvu.edu> | 2017-03-17 08:34:57 -0400 |
| commit | 9d89261fedf23c11b684eb66cefdd86a9378ad20 (patch) | |
| tree | 5158fdaedcd2951fbd41d49b72f7e09200fa3192 /BJC-Utils2/src/main/java/bjc/utils/funcutils/StringDelimiter.java | |
| parent | a63c30f5fe9ee302e73bb30e35095d789adb1a80 (diff) | |
Move parsing utilities.
Moved the parsing utilities SequenceDelimiter and TokenSplitter to the
parserutils package, instead of the funcutils package.
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcutils/StringDelimiter.java')
| -rw-r--r-- | BJC-Utils2/src/main/java/bjc/utils/funcutils/StringDelimiter.java | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcutils/StringDelimiter.java b/BJC-Utils2/src/main/java/bjc/utils/funcutils/StringDelimiter.java deleted file mode 100644 index e4303c7..0000000 --- a/BJC-Utils2/src/main/java/bjc/utils/funcutils/StringDelimiter.java +++ /dev/null @@ -1,31 +0,0 @@ -package bjc.utils.funcutils; - -import bjc.utils.data.ITree; - -/** - * A sequence delimiter specialized for strings. - * - * @author EVE - * - */ -public class StringDelimiter extends SequenceDelimiter<String> { - - /** - * Override of - * {@link SequenceDelimiter#delimitSequence(Object, Object, Object...)} - * for ease of use for strings. - * - * @param seq - * The sequence to delimit. - * - * @return The sequence as a tree. - * - * @throws DelimiterException - * if something went wrong with delimiting the sequence. - * - * @see SequenceDelimiter - */ - public ITree<String> delimitSequence(String... seq) throws DelimiterException { - return super.delimitSequence("root", "contents", seq); - } -} |
