Java org.apache.commons.text StrTokenizer fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.text StrTokenizer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.text StrTokenizer.

The text is from its open source code.

Constructor

StrTokenizer(final String input, final char delim, final char quote)
Constructs a tokenizer splitting on the specified delimiter character and handling quotes using the specified quote character.
StrTokenizer(final String input, final StrMatcher delim, final StrMatcher quote)
Constructs a tokenizer splitting using the specified delimiter matcher and handling quotes using the specified quote matcher.
StrTokenizer(final char[] input, final char delim, final char quote)
Constructs a tokenizer splitting on the specified delimiter character and handling quotes using the specified quote character.
StrTokenizer(final char[] input, final StrMatcher delim, final StrMatcher quote)
Constructs a tokenizer splitting using the specified delimiter matcher and handling quotes using the specified quote matcher.
StrTokenizer(final String input)
Constructs a tokenizer splitting on space, tab, newline and formfeed as per StringTokenizer.
StrTokenizer(final char[] input)
Constructs a tokenizer splitting on space, tab, newline and formfeed as per StringTokenizer.

Method

String[]getTokenArray()
Gets a copy of the full token list as an independent modifiable array.