Package | Description |
---|---|
propel.core.utils |
Modifier and Type | Method and Description |
---|---|
static StringSplitOptions |
StringSplitOptions.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringSplitOptions[] |
StringSplitOptions.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<byte[]> |
ByteArrayUtils.split(byte[] data,
byte[] separator,
StringSplitOptions options)
Splits a byte array into parts using the given separator.
|
static java.lang.String[] |
StringUtils.split(java.lang.String text,
char[] delimiters,
StringSplitOptions options)
Returns a string array that contains the substrings of the text instance that are delimited by elements of a specified Unicode
character array.
|
static java.lang.String[] |
StringUtils.split(java.lang.String text,
char delimiter,
StringSplitOptions options)
Splits a string using the specified split option.
|
static java.lang.String[] |
StringUtils.split(java.lang.String text,
java.lang.String[] delimiters,
StringSplitOptions options)
Returns a string array that contains the substrings of the text instance that are delimited by elements provided in the specified
Unicode string array.
|
static java.lang.String[] |
StringUtils.split(java.lang.String text,
java.lang.String delimiter,
StringSplitOptions options)
Splits a string using the specified split option.
|