Package com.vladsch.flexmark.util.misc
Class DelimitedBuilder
- java.lang.Object
-
- com.vladsch.flexmark.util.misc.DelimitedBuilder
-
public class DelimitedBuilder extends Object
-
-
Constructor Summary
Constructors Constructor Description DelimitedBuilder()DelimitedBuilder(String delimiter)DelimitedBuilder(String delimiter, int capacity)
-
Method Summary
-
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
-
getAndClear
public String getAndClear()
-
clear
public DelimitedBuilder clear()
-
toStringOrNull
public String toStringOrNull()
-
mark
public DelimitedBuilder mark()
-
unmark
public DelimitedBuilder unmark()
-
push
public DelimitedBuilder push()
-
push
public DelimitedBuilder push(String delimiter)
-
pop
public DelimitedBuilder pop()
-
append
public DelimitedBuilder append(char v)
-
append
public DelimitedBuilder append(int v)
-
append
public DelimitedBuilder append(boolean v)
-
append
public DelimitedBuilder append(long v)
-
append
public DelimitedBuilder append(float v)
-
append
public DelimitedBuilder append(double v)
-
append
public DelimitedBuilder append(String v)
-
append
public DelimitedBuilder append(String v, int start, int end)
-
append
public DelimitedBuilder append(CharSequence v)
-
append
public DelimitedBuilder append(CharSequence v, int start, int end)
-
append
public DelimitedBuilder append(char[] v)
-
append
public DelimitedBuilder append(char[] v, int start, int end)
-
append
public DelimitedBuilder append(Object o)
-
appendCodePoint
public DelimitedBuilder appendCodePoint(int codePoint)
-
appendAll
public <V> DelimitedBuilder appendAll(V[] v)
-
appendAll
public <V> DelimitedBuilder appendAll(V[] v, int start, int end)
-
appendAll
public <V> DelimitedBuilder appendAll(String delimiter, V[] v)
-
appendAll
public <V> DelimitedBuilder appendAll(String delimiter, V[] v, int start, int end)
-
appendAll
public <V> DelimitedBuilder appendAll(List<? extends V> v)
-
appendAll
public <V> DelimitedBuilder appendAll(List<? extends V> v, int start, int end)
-
appendAll
public <V> DelimitedBuilder appendAll(String delimiter, List<? extends V> v)
-
appendAll
public <V> DelimitedBuilder appendAll(String delimiter, List<? extends V> v, int start, int end)
-
-