Modifier and Type | Method and Description |
---|---|
static Flowable<Integer> |
characters(CharSequence string)
Signals each character of the given string CharSequence as Integers.
|
static FlowableTransformer<String,String> |
split(Pattern pattern)
Splits the input sequence of strings based on a pattern even across subsequent
elements if needed.
|
static FlowableTransformer<String,String> |
split(Pattern pattern,
int bufferSize)
Splits the input sequence of strings based on a pattern even across subsequent
elements if needed.
|
static FlowableTransformer<String,String> |
split(String pattern)
Splits the input sequence of strings based on a pattern even across subsequent
elements if needed.
|
static FlowableTransformer<String,String> |
split(String pattern,
int bufferSize)
Splits the input sequence of strings based on a pattern even across subsequent
elements if needed.
|
public static Flowable<Integer> characters(CharSequence string)
string
- the source of characterspublic static FlowableTransformer<String,String> split(Pattern pattern)
pattern
- the Rexexp pattern to split alongpublic static FlowableTransformer<String,String> split(Pattern pattern, int bufferSize)
pattern
- the Rexexp pattern to split alongbufferSize
- the number of items to prefetch from the upstreampublic static FlowableTransformer<String,String> split(String pattern)
pattern
- the Rexexp pattern to split alongpublic static FlowableTransformer<String,String> split(String pattern, int bufferSize)
pattern
- the Rexexp pattern to split alongbufferSize
- the number of items to prefetch from the upstream