com.landawn.abacus.util.Joiner Maven / Gradle / Ivy
Show all versions of abacus-common Show documentation
/*
* Copyright (C) 2019 HaiYang Li
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package com.landawn.abacus.util;
import java.io.Closeable;
import java.io.IOException;
import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import java.util.function.Supplier;
import com.landawn.abacus.parser.ParserUtil;
import com.landawn.abacus.parser.ParserUtil.BeanInfo;
import com.landawn.abacus.util.u.Nullable;
import com.landawn.abacus.util.stream.Stream;
/**
*
* @author haiyangl
* @since 1.3
*/
public final class Joiner implements Closeable {
public static final String DEFAULT_DELIMITER = Strings.ELEMENT_SEPARATOR;
public static final String DEFAULT_KEY_VALUE_DELIMITER = "=";
private final String prefix;
private final String separator;
private final String keyValueSeparator;
private final String suffix;
private final boolean isEmptySeparator;
private final boolean isEmptyKeyValueSeparator;
private boolean trimBeforeAppend = false;
private boolean skipNulls = false;
private boolean useCachedBuffer = false;
private String nullText = Strings.NULL_STRING;
private StringBuilder buffer;
private String emptyValue;
Joiner(CharSequence separator) {
this(separator, DEFAULT_KEY_VALUE_DELIMITER);
}
Joiner(final CharSequence separator, final CharSequence keyValueDelimiter) {
this(separator, keyValueDelimiter, "", "");
}
Joiner(final CharSequence separator, final CharSequence prefix, final CharSequence suffix) {
this(separator, DEFAULT_KEY_VALUE_DELIMITER, prefix, suffix);
}
Joiner(final CharSequence separator, final CharSequence keyValueSeparator, final CharSequence prefix, final CharSequence suffix) {
N.checkArgNotNull(prefix, "The prefix must not be null");
N.checkArgNotNull(separator, "The separator must not be null");
N.checkArgNotNull(keyValueSeparator, "The keyValueSeparator must not be null");
N.checkArgNotNull(suffix, "The suffix must not be null");
// make defensive copies of arguments
this.prefix = prefix.toString();
this.separator = separator.toString();
this.keyValueSeparator = keyValueSeparator.toString();
this.suffix = suffix.toString();
this.emptyValue = this.prefix + this.suffix;
this.isEmptySeparator = Strings.isEmpty(separator);
this.isEmptyKeyValueSeparator = Strings.isEmpty(keyValueSeparator);
}
/**
*
*
* @return
*/
public static Joiner defauLt() {
return with(DEFAULT_DELIMITER, DEFAULT_KEY_VALUE_DELIMITER);
}
/**
*
* @param separator
* @return
*/
public static Joiner with(final CharSequence separator) {
return new Joiner(separator);
}
/**
*
* @param separator
* @param keyValueDelimiter
* @return
*/
public static Joiner with(final CharSequence separator, final CharSequence keyValueDelimiter) {
return new Joiner(separator, keyValueDelimiter);
}
/**
*
* @param separator
* @param prefix
* @param suffix
* @return
*/
public static Joiner with(final CharSequence separator, final CharSequence prefix, final CharSequence suffix) {
return new Joiner(separator, prefix, suffix);
}
/**
*
* @param separator
* @param keyValueSeparator
* @param prefix
* @param suffix
* @return
*/
public static Joiner with(final CharSequence separator, final CharSequence keyValueSeparator, final CharSequence prefix, final CharSequence suffix) {
return new Joiner(separator, keyValueSeparator, prefix, suffix);
}
/**
* Sets the empty value.
*
* @param emptyValue
* @return
*/
public Joiner setEmptyValue(CharSequence emptyValue) {
this.emptyValue = N.checkArgNotNull(emptyValue, "The empty value must not be null").toString();
return this;
}
/**
*
* @param trim
* @return
* @deprecated replaced by {@link #trimBeforeAppend()}
*/
@Deprecated
public Joiner trim(boolean trim) {
this.trimBeforeAppend = trim;
return this;
}
/**
*
*
* @return
*/
public Joiner trimBeforeAppend() {
this.trimBeforeAppend = true;
return this;
}
/**
* Ignore the {@code null} element/value for {@code key/value, Map, Bean} when the specified {@code element} or {@code value} is {@code null} if it's set to {@code true}.
*
* @param skipNull
* @return
* @deprecated replaced by {@link #skipNulls()}
*/
@Deprecated
public Joiner skipNull(boolean skipNull) {
this.skipNulls = skipNull;
return this;
}
/**
*
*
* @return
*/
public Joiner skipNulls() {
this.skipNulls = true;
return this;
}
/**
* Use for null.
*
* @param nullText
* @return
*/
public Joiner useForNull(String nullText) {
this.nullText = nullText == null ? Strings.NULL_STRING : nullText;
return this;
}
// /**
// * Get the {@code StringBuilder} from object factory to improve performance if it's set to true, and must remember to call {@code toString()/map()/mapIfNotEmpty()/stream()/streamIfNotEmpty()} or {@code close()} to recycle the {@code StringBuilder}.
// *
// * @param reuseStringBuilder
// * @return
// * @deprecated replaced by {@code #reuseCachedBuffer(boolean)}
// */
// @Deprecated
// public Joiner reuseStringBuilder(boolean reuseStringBuilder) {
// if (buffer != null) {
// throw new IllegalStateException("Can't reset because the StringBuilder has been created");
// }
//
// this.useCachedBuffer = reuseStringBuilder;
//
// return this;
// }
/**
* Improving performance by set {@code useCachedBuffer=true}, and must remember to call {@code toString()/map()/mapIfNotEmpty()/stream()/streamIfNotEmpty()} or {@code close()} to recycle the cached buffer.
*
* @param useCachedBuffer
* @return
* @deprecated replaced by {@link #reuseCachedBuffer()}
*/
@Deprecated
public Joiner reuseCachedBuffer(boolean useCachedBuffer) {
if (buffer != null) {
throw new IllegalStateException("Can't reset because the buffer has been created");
}
this.useCachedBuffer = useCachedBuffer;
return this;
}
/**
* Improving performance by set {@code useCachedBuffer=true}, and must remember to call {@code toString()/appendTo()/map()/mapIfNotEmpty()/stream()/streamIfNotEmpty()} or {@code close()} to recycle the cached buffer.
*
* @return
*/
public Joiner reuseCachedBuffer() {
if (buffer != null) {
throw new IllegalStateException("Can't reset because the buffer has been created");
}
this.useCachedBuffer = true;
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(boolean element) {
prepareBuilder().append(element);
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(char element) {
prepareBuilder().append(element);
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(int element) {
prepareBuilder().append(element);
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(long element) {
prepareBuilder().append(element);
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(float element) {
prepareBuilder().append(element);
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(double element) {
prepareBuilder().append(element);
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(String element) {
if (element != null || !skipNulls) {
prepareBuilder().append(element == null ? nullText : (trimBeforeAppend ? element.trim() : element));
}
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(CharSequence element) {
if (element != null || !skipNulls) {
prepareBuilder().append(element == null ? nullText : (trimBeforeAppend ? element.toString().trim() : element));
}
return this;
}
/**
*
* @param element
* @param start
* @param end
* @return
*/
public Joiner append(CharSequence element, final int start, final int end) {
if (element != null || !skipNulls) {
if (element == null) {
prepareBuilder().append(nullText);
} else if (trimBeforeAppend) {
prepareBuilder().append(element.subSequence(start, end).toString().trim());
} else {
prepareBuilder().append(element, start, end);
}
}
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(StringBuffer element) {
if (element != null || !skipNulls) {
if (element == null) {
prepareBuilder().append(nullText);
} else {
prepareBuilder().append(element);
}
}
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(char[] element) {
if (element != null || !skipNulls) {
if (element == null) {
prepareBuilder().append(nullText);
} else {
prepareBuilder().append(element);
}
}
return this;
}
/**
*
* @param element
* @param offset
* @param len
* @return
*/
public Joiner append(char[] element, final int offset, final int len) {
if (element != null || !skipNulls) {
if (element == null) {
prepareBuilder().append(nullText);
} else {
prepareBuilder().append(element, offset, len);
}
}
return this;
}
/**
*
* @param element
* @return
*/
public Joiner append(Object element) {
if (element != null || !skipNulls) {
prepareBuilder().append(toString(element));
}
return this;
}
/**
* Append if not null.
*
* @param element
* @return
*/
public Joiner appendIfNotNull(Object element) {
if (element != null) {
prepareBuilder().append(toString(element));
}
return this;
}
/**
*
* @param b
* @param supplier
* @return
*/
public Joiner appendIf(boolean b, Supplier> supplier) {
if (b) {
append(supplier.get());
}
return this;
}
/**
*
* @param a
* @return
*/
public Joiner appendAll(final boolean[] a) {
if (N.notEmpty(a)) {
return appendAll(a, 0, a.length);
}
return this;
}
/**
*
* @param a
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final boolean[] a, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, a == null ? 0 : a.length);
if (N.isEmpty(a) || fromIndex == toIndex) {
return this;
}
StringBuilder sb = null;
for (int i = fromIndex; i < toIndex; i++) {
if (sb == null) {
sb = prepareBuilder().append(a[i]);
} else {
if (isEmptySeparator) {
sb.append(a[i]);
} else {
sb.append(separator).append(a[i]);
}
}
}
return this;
}
/**
*
* @param a
* @return
*/
public Joiner appendAll(final char[] a) {
if (N.notEmpty(a)) {
return appendAll(a, 0, a.length);
}
return this;
}
/**
*
* @param a
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final char[] a, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, a == null ? 0 : a.length);
if (N.isEmpty(a) || fromIndex == toIndex) {
return this;
}
StringBuilder sb = null;
for (int i = fromIndex; i < toIndex; i++) {
if (sb == null) {
sb = prepareBuilder().append(a[i]);
} else {
if (isEmptySeparator) {
sb.append(a[i]);
} else {
sb.append(separator).append(a[i]);
}
}
}
return this;
}
/**
*
* @param a
* @return
*/
public Joiner appendAll(final byte[] a) {
if (N.notEmpty(a)) {
return appendAll(a, 0, a.length);
}
return this;
}
/**
*
* @param a
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final byte[] a, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, a == null ? 0 : a.length);
if (N.isEmpty(a) || fromIndex == toIndex) {
return this;
}
StringBuilder sb = null;
for (int i = fromIndex; i < toIndex; i++) {
if (sb == null) {
sb = prepareBuilder().append(a[i]);
} else {
if (isEmptySeparator) {
sb.append(a[i]);
} else {
sb.append(separator).append(a[i]);
}
}
}
return this;
}
/**
*
* @param a
* @return
*/
public Joiner appendAll(final short[] a) {
if (N.notEmpty(a)) {
return appendAll(a, 0, a.length);
}
return this;
}
/**
*
* @param a
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final short[] a, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, a == null ? 0 : a.length);
if (N.isEmpty(a) || fromIndex == toIndex) {
return this;
}
StringBuilder sb = null;
for (int i = fromIndex; i < toIndex; i++) {
if (sb == null) {
sb = prepareBuilder().append(a[i]);
} else {
if (isEmptySeparator) {
sb.append(a[i]);
} else {
sb.append(separator).append(a[i]);
}
}
}
return this;
}
/**
*
* @param a
* @return
*/
public Joiner appendAll(final int[] a) {
if (N.notEmpty(a)) {
return appendAll(a, 0, a.length);
}
return this;
}
/**
*
* @param a
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final int[] a, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, a == null ? 0 : a.length);
if (N.isEmpty(a) || fromIndex == toIndex) {
return this;
}
StringBuilder sb = null;
for (int i = fromIndex; i < toIndex; i++) {
if (sb == null) {
sb = prepareBuilder().append(a[i]);
} else {
if (isEmptySeparator) {
sb.append(a[i]);
} else {
sb.append(separator).append(a[i]);
}
}
}
return this;
}
/**
*
* @param a
* @return
*/
public Joiner appendAll(final long[] a) {
if (N.notEmpty(a)) {
return appendAll(a, 0, a.length);
}
return this;
}
/**
*
* @param a
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final long[] a, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, a == null ? 0 : a.length);
if (N.isEmpty(a) || fromIndex == toIndex) {
return this;
}
StringBuilder sb = null;
for (int i = fromIndex; i < toIndex; i++) {
if (sb == null) {
sb = prepareBuilder().append(a[i]);
} else {
if (isEmptySeparator) {
sb.append(a[i]);
} else {
sb.append(separator).append(a[i]);
}
}
}
return this;
}
/**
*
* @param a
* @return
*/
public Joiner appendAll(final float[] a) {
if (N.notEmpty(a)) {
return appendAll(a, 0, a.length);
}
return this;
}
/**
*
* @param a
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final float[] a, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, a == null ? 0 : a.length);
if (N.isEmpty(a) || fromIndex == toIndex) {
return this;
}
StringBuilder sb = null;
for (int i = fromIndex; i < toIndex; i++) {
if (sb == null) {
sb = prepareBuilder().append(a[i]);
} else {
if (isEmptySeparator) {
sb.append(a[i]);
} else {
sb.append(separator).append(a[i]);
}
}
}
return this;
}
/**
*
* @param a
* @return
*/
public Joiner appendAll(final double[] a) {
if (N.notEmpty(a)) {
return appendAll(a, 0, a.length);
}
return this;
}
/**
*
* @param a
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final double[] a, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, a == null ? 0 : a.length);
if (N.isEmpty(a) || fromIndex == toIndex) {
return this;
}
StringBuilder sb = null;
for (int i = fromIndex; i < toIndex; i++) {
if (sb == null) {
sb = prepareBuilder().append(a[i]);
} else {
if (isEmptySeparator) {
sb.append(a[i]);
} else {
sb.append(separator).append(a[i]);
}
}
}
return this;
}
/**
*
* @param a
* @return
*/
public Joiner appendAll(final Object[] a) {
if (N.notEmpty(a)) {
return appendAll(a, 0, a.length);
}
return this;
}
/**
*
* @param a
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final Object[] a, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, a == null ? 0 : a.length);
if (N.isEmpty(a) || fromIndex == toIndex) {
return this;
}
StringBuilder sb = null;
for (int i = fromIndex; i < toIndex; i++) {
if (a[i] != null || !skipNulls) {
if (sb == null) {
sb = prepareBuilder().append(toString(a[i]));
} else {
if (isEmptySeparator) {
sb.append(toString(a[i]));
} else {
sb.append(separator).append(toString(a[i]));
}
}
}
}
return this;
}
/**
*
* @param c
* @return
*/
public Joiner appendAll(final BooleanList c) {
if (N.notEmpty(c)) {
return appendAll(c.array(), 0, c.size());
}
return this;
}
/**
*
* @param c
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final BooleanList c, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, c == null ? 0 : c.size());
if (N.isEmpty(c) || fromIndex == toIndex) {
return this;
}
return appendAll(c.array(), fromIndex, toIndex);
}
/**
*
* @param c
* @return
*/
public Joiner appendAll(final CharList c) {
if (N.notEmpty(c)) {
return appendAll(c.array(), 0, c.size());
}
return this;
}
/**
*
* @param c
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final CharList c, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, c == null ? 0 : c.size());
if (N.isEmpty(c) || fromIndex == toIndex) {
return this;
}
return appendAll(c.array(), fromIndex, toIndex);
}
/**
*
* @param c
* @return
*/
public Joiner appendAll(final ByteList c) {
if (N.notEmpty(c)) {
return appendAll(c.array(), 0, c.size());
}
return this;
}
/**
*
* @param c
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final ByteList c, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, c == null ? 0 : c.size());
if (N.isEmpty(c) || fromIndex == toIndex) {
return this;
}
return appendAll(c.array(), fromIndex, toIndex);
}
/**
*
* @param c
* @return
*/
public Joiner appendAll(final ShortList c) {
if (N.notEmpty(c)) {
return appendAll(c.array(), 0, c.size());
}
return this;
}
/**
*
* @param c
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final ShortList c, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, c == null ? 0 : c.size());
if (N.isEmpty(c) || fromIndex == toIndex) {
return this;
}
return appendAll(c.array(), fromIndex, toIndex);
}
/**
*
* @param c
* @return
*/
public Joiner appendAll(final IntList c) {
if (N.notEmpty(c)) {
return appendAll(c.array(), 0, c.size());
}
return this;
}
/**
*
* @param c
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final IntList c, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, c == null ? 0 : c.size());
if (N.isEmpty(c) || fromIndex == toIndex) {
return this;
}
return appendAll(c.array(), fromIndex, toIndex);
}
/**
*
* @param c
* @return
*/
public Joiner appendAll(final LongList c) {
if (N.notEmpty(c)) {
return appendAll(c.array(), 0, c.size());
}
return this;
}
/**
*
* @param c
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final LongList c, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, c == null ? 0 : c.size());
if (N.isEmpty(c) || fromIndex == toIndex) {
return this;
}
return appendAll(c.array(), fromIndex, toIndex);
}
/**
*
* @param c
* @return
*/
public Joiner appendAll(final FloatList c) {
if (N.notEmpty(c)) {
return appendAll(c.array(), 0, c.size());
}
return this;
}
/**
*
* @param c
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final FloatList c, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, c == null ? 0 : c.size());
if (N.isEmpty(c) || fromIndex == toIndex) {
return this;
}
return appendAll(c.array(), fromIndex, toIndex);
}
/**
*
* @param c
* @return
*/
public Joiner appendAll(final DoubleList c) {
if (N.notEmpty(c)) {
return appendAll(c.array(), 0, c.size());
}
return this;
}
/**
*
* @param c
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final DoubleList c, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, c == null ? 0 : c.size());
if (N.isEmpty(c) || fromIndex == toIndex) {
return this;
}
return appendAll(c.array(), fromIndex, toIndex);
}
/**
*
* @param c
* @return
*/
public Joiner appendAll(final Collection> c) {
if (N.notEmpty(c)) {
return appendAll(c, 0, c.size());
}
return this;
}
/**
*
* @param c
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendAll(final Collection> c, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, c == null ? 0 : c.size());
if (N.isEmpty(c) || (fromIndex == toIndex && fromIndex < c.size())) {
return this;
}
StringBuilder sb = null;
int i = 0;
for (Object e : c) {
if (i++ < fromIndex) {
continue;
}
if (e != null || !skipNulls) {
if (sb == null) {
sb = prepareBuilder().append(toString(e));
} else {
if (isEmptySeparator) {
sb.append(toString(e));
} else {
sb.append(separator).append(toString(e));
}
}
}
if (i >= toIndex) {
break;
}
}
return this;
}
/**
*
*
* @param c
* @return
*/
public Joiner appendAll(final Iterable> c) {
if (c != null) {
StringBuilder sb = null;
for (Object e : c) {
if (e != null || !skipNulls) {
if (sb == null) {
sb = prepareBuilder().append(toString(e));
} else {
if (isEmptySeparator) {
sb.append(toString(e));
} else {
sb.append(separator).append(toString(e));
}
}
}
}
}
return this;
}
/**
*
* @param
* @param
* @param c
* @param filter will be the only condition to decide if append an element from the specified {@code Iterable} or not. {@code skipNulls()} won't be used here.
* @return
* @throws E
*/
public Joiner appendAll(final Iterable extends T> c, final Throwables.Predicate super T, E> filter) throws E {
N.checkArgNotNull(filter, "filter"); //NOSONAR
if (c != null) {
StringBuilder sb = null;
for (T e : c) {
if (filter.test(e) == false) {
continue;
}
if (sb == null) {
sb = prepareBuilder().append(toString(e));
} else {
if (isEmptySeparator) {
sb.append(toString(e));
} else {
sb.append(separator).append(toString(e));
}
}
}
}
return this;
}
/**
*
* @param iter
* @return
*/
public Joiner appendAll(final Iterator> iter) {
if (iter != null) {
StringBuilder sb = null;
Object e = null;
while (iter.hasNext()) {
e = iter.next();
if (e != null || !skipNulls) {
if (sb == null) {
sb = prepareBuilder().append(toString(e));
} else {
if (isEmptySeparator) {
sb.append(toString(e));
} else {
sb.append(separator).append(toString(e));
}
}
}
}
}
return this;
}
/**
*
* @param
* @param
* @param iter
* @param filter will be the only condition to decide if append an element from the specified {@code Iterable} or not. {@code skipNulls()} won't be used here.
* @return
* @throws E
*/
public Joiner appendAll(final Iterator extends T> iter, final Throwables.Predicate super T, E> filter) throws E {
N.checkArgNotNull(filter, "filter");
if (iter != null) {
StringBuilder sb = null;
T e = null;
while (iter.hasNext()) {
e = iter.next();
if (filter.test(e) == false) {
continue;
}
if (sb == null) {
sb = prepareBuilder().append(toString(e));
} else {
if (isEmptySeparator) {
sb.append(toString(e));
} else {
sb.append(separator).append(toString(e));
}
}
}
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, boolean value) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value);
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, char value) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value);
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, int value) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value);
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, long value) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value);
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, float value) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value);
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, double value) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value);
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, String value) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value == null ? nullText : (trimBeforeAppend ? value.trim() : value));
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value == null ? nullText : (trimBeforeAppend ? value.trim() : value));
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, CharSequence value) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value == null ? nullText : (trimBeforeAppend ? value.toString().trim() : value));
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value == null ? nullText : (trimBeforeAppend ? value.toString().trim() : value));
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, StringBuffer value) {
if (value == null) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(nullText);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(nullText);
}
} else {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value);
}
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, char[] value) {
if (value == null) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(nullText);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(nullText);
}
} else {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(value);
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(value);
}
}
return this;
}
/**
*
* @param key
* @param value
* @return
*/
public Joiner appendEntry(String key, Object value) {
if (isEmptyKeyValueSeparator) {
prepareBuilder().append(key).append(toString(value));
} else {
prepareBuilder().append(key).append(keyValueSeparator).append(toString(value));
}
return this;
}
/**
*
* @param entry
* @return
*/
public Joiner appendEntry(Map.Entry, ?> entry) {
if (entry == null) {
append(nullText);
} else {
appendEntry(toString(entry.getKey()), toString(entry.getValue()));
}
return this;
}
// public Joiner appendEntryIf(boolean b, String key, Object value) {
// if (b) {
// appendEntry(key, value);
// }
//
// return this;
// }
//
// public Joiner appendEntryIf(boolean b, Map.Entry, ?> entry) {
// if (b) {
// appendEntry(entry);
// }
//
// return this;
// }
/**
*
* @param m
* @return
*/
public Joiner appendEntries(final Map, ?> m) {
if (N.notEmpty(m)) {
return appendEntries(m, 0, m.size());
}
return this;
}
/**
*
* @param m
* @param fromIndex
* @param toIndex
* @return
*/
public Joiner appendEntries(final Map, ?> m, final int fromIndex, final int toIndex) {
N.checkFromToIndex(fromIndex, toIndex, m == null ? 0 : m.size());
if ((N.isEmpty(m) && fromIndex == 0 && toIndex == 0) || (fromIndex == toIndex && fromIndex < m.size())) {
return this;
}
StringBuilder sb = null;
int i = 0;
for (Map.Entry, ?> entry : m.entrySet()) {
if (i++ < fromIndex) {
continue;
}
if (sb == null) {
sb = prepareBuilder().append(toString(entry.getKey())).append(keyValueSeparator).append(toString(entry.getValue()));
} else {
if (isEmptySeparator) {
sb.append(toString(entry.getKey()));
} else {
sb.append(separator).append(toString(entry.getKey()));
}
if (isEmptyKeyValueSeparator) {
sb.append(toString(entry.getValue()));
} else {
sb.append(keyValueSeparator).append(toString(entry.getValue()));
}
}
if (i >= toIndex) {
break;
}
}
return this;
}
/**
*
*
* @param
* @param
* @param
* @param m
* @param filter
* @return
* @throws E
*/
public Joiner appendEntries(final Map m, final Throwables.Predicate super Map.Entry, E> filter) throws E {
N.checkArgNotNull(filter, "filter");
StringBuilder sb = null;
for (Map.Entry entry : m.entrySet()) {
if (filter.test(entry) == false) {
continue;
}
if (sb == null) {
sb = prepareBuilder().append(toString(entry.getKey())).append(keyValueSeparator).append(toString(entry.getValue()));
} else {
if (isEmptySeparator) {
sb.append(toString(entry.getKey()));
} else {
sb.append(separator).append(toString(entry.getKey()));
}
if (isEmptyKeyValueSeparator) {
sb.append(toString(entry.getValue()));
} else {
sb.append(keyValueSeparator).append(toString(entry.getValue()));
}
}
}
return this;
}
/**
*
*
* @param
* @param
* @param
* @param m
* @param filter
* @return
* @throws E
*/
public Joiner appendEntries(final Map m, final Throwables.BiPredicate super K, ? super V, E> filter) throws E {
N.checkArgNotNull(filter, "filter");
StringBuilder sb = null;
for (Map.Entry entry : m.entrySet()) {
if (filter.test(entry.getKey(), entry.getValue()) == false) {
continue;
}
if (sb == null) {
sb = prepareBuilder().append(toString(entry.getKey())).append(keyValueSeparator).append(toString(entry.getValue()));
} else {
if (isEmptySeparator) {
sb.append(toString(entry.getKey()));
} else {
sb.append(separator).append(toString(entry.getKey()));
}
if (isEmptyKeyValueSeparator) {
sb.append(toString(entry.getValue()));
} else {
sb.append(keyValueSeparator).append(toString(entry.getValue()));
}
}
}
return this;
}
/**
*
*
* @param
* @param
* @param
* @param
* @param m
* @param keyMapper
* @param valueMapper
* @return
* @throws E
* @throws E2
*/
public Joiner appendEntries(final Map m, final Throwables.Function super K, ?, E> keyMapper,
final Throwables.Function super V, ?, E2> valueMapper) throws E, E2 {
N.checkArgNotNull(keyMapper, "keyMapper");
N.checkArgNotNull(valueMapper, "valueMapper");
StringBuilder sb = null;
for (Map.Entry entry : m.entrySet()) {
if (sb == null) {
sb = prepareBuilder().append(toString(keyMapper.apply(entry.getKey())))
.append(keyValueSeparator)
.append(toString(valueMapper.apply(entry.getValue())));
} else {
if (isEmptySeparator) {
sb.append(toString(keyMapper.apply(entry.getKey())));
} else {
sb.append(separator).append(toString(keyMapper.apply(entry.getKey())));
}
if (isEmptyKeyValueSeparator) {
sb.append(toString(toString(valueMapper.apply(entry.getValue()))));
} else {
sb.append(keyValueSeparator).append(toString(valueMapper.apply(entry.getValue())));
}
}
}
return this;
}
/**
*
*
* @param bean
* @return
*/
public Joiner appendEntries(final Object bean) {
return appendEntries(bean, (Collection) null);
}
/**
*
*
* @param bean
* @param selectPropNames
* @return
*/
public Joiner appendEntries(final Object bean, final Collection selectPropNames) {
if (bean == null) {
return this;
}
if (N.isEmpty(selectPropNames)) {
return appendEntries(bean, true, null);
}
final Class> cls = bean.getClass();
N.checkArgument(ClassUtil.isBeanClass(cls), "'bean' must be bean class with getter/setter methods"); //NOSONAR
final BeanInfo beanInfo = ParserUtil.getBeanInfo(cls);
StringBuilder sb = null;
Object propValue = null;
for (String propName : selectPropNames) {
propValue = beanInfo.getPropValue(bean, propName);
if (sb == null) {
sb = prepareBuilder().append(propName).append(keyValueSeparator).append(toString(propValue));
} else {
if (isEmptySeparator) {
sb.append(propName);
} else {
sb.append(separator).append(propName);
}
if (isEmptyKeyValueSeparator) {
sb.append(toString(propValue));
} else {
sb.append(keyValueSeparator).append(toString(propValue));
}
}
}
return this;
}
/**
*
* @param bean
* @param ignoreNullProperty
* @param ignoredPropNames
* @return
*/
public Joiner appendEntries(final Object bean, final boolean ignoreNullProperty, final Set ignoredPropNames) {
if (bean == null) {
return this;
}
final Class> cls = bean.getClass();
N.checkArgument(ClassUtil.isBeanClass(cls), "'bean' must be bean class with getter/setter methods");
final boolean hasIgnoredPropNames = N.notEmpty(ignoredPropNames);
final BeanInfo beanInfo = ParserUtil.getBeanInfo(cls);
StringBuilder sb = null;
Object propValue = null;
for (String propName : ClassUtil.getPropNameList(cls)) {
if (hasIgnoredPropNames && ignoredPropNames.contains(propName)) {
continue;
}
propValue = beanInfo.getPropValue(bean, propName);
if (propValue != null || !ignoreNullProperty) {
if (sb == null) {
sb = prepareBuilder().append(propName).append(keyValueSeparator).append(toString(propValue));
} else {
if (isEmptySeparator) {
sb.append(propName);
} else {
sb.append(separator).append(propName);
}
if (isEmptyKeyValueSeparator) {
sb.append(toString(propValue));
} else {
sb.append(keyValueSeparator).append(toString(propValue));
}
}
}
}
return this;
}
/**
*
*
* @param
* @param bean
* @param filter
* @return
* @throws E
*/
public Joiner appendEntries(final Object bean, final Throwables.BiPredicate super String, ?, E> filter) throws E {
N.checkArgNotNull(filter, "filter");
if (bean == null) {
return this;
}
final Class> cls = bean.getClass();
N.checkArgument(ClassUtil.isBeanClass(cls), "'bean' must be bean class with getter/setter methods");
final Throwables.BiPredicate super String, Object, E> filterToUse = (Throwables.BiPredicate super String, Object, E>) filter;
final BeanInfo beanInfo = ParserUtil.getBeanInfo(cls);
StringBuilder sb = null;
Object propValue = null;
for (String propName : ClassUtil.getPropNameList(cls)) {
propValue = beanInfo.getPropValue(bean, propName);
if (filterToUse.test(propName, propValue) == false) {
continue;
}
if (sb == null) {
sb = prepareBuilder().append(propName).append(keyValueSeparator).append(toString(propValue));
} else {
if (isEmptySeparator) {
sb.append(propName);
} else {
sb.append(separator).append(propName);
}
if (isEmptyKeyValueSeparator) {
sb.append(toString(propValue));
} else {
sb.append(keyValueSeparator).append(toString(propValue));
}
}
}
return this;
}
/**
*
* @param str
* @param n
* @return
*/
public Joiner repeat(final String str, final int n) {
N.checkArgNotNegative(n, "n");
final String newString = toString(str);
if (n < 10) {
for (int i = 0; i < n; i++) {
append(newString);
}
} else {
append(Strings.repeat(newString, n, separator));
}
return this;
}
/**
*
* @param obj
* @param n
* @return
*/
public Joiner repeat(final Object obj, final int n) {
return repeat(toString(obj), n);
}
/**
* Adds the contents of the given {@code StringJoiner} without prefix and
* suffix as the next element if it is non-empty. If the given {@code
* StringJoiner} is empty, the call has no effect.
*
* A {@code StringJoiner} is empty if append/appendAll
* has never been called, and if {@code merge()} has never been called
* with a non-empty {@code StringJoiner} argument.
*
*
If the other {@code StringJoiner} is using a different delimiter,
* then elements from the other {@code StringJoiner} are concatenated with
* that delimiter and the result is appended to this {@code StringJoiner}
* as a single element.
*
*
Remember to close {@code other} Joiner if {@code reuseCachedBuffer} is set to {@code} true.
*
* @param other The {@code StringJoiner} whose contents should be merged
* into this one
* @return This {@code StringJoiner}
* @throws NullPointerException if the other {@code StringJoiner} is null
*/
public Joiner merge(Joiner other) {
N.checkArgNotNull(other);
if (other.buffer != null) {
final int length = other.buffer.length();
// lock the length so that we can seize the data to be appended
// before initiate copying to avoid interference, especially when
// merge 'this'
StringBuilder builder = prepareBuilder();
builder.append(other.buffer, other.prefix.length(), length);
}
return this;
}
private StringBuilder prepareBuilder() {
if (buffer != null) {
if (!isEmptySeparator) {
buffer.append(separator);
}
} else {
buffer = (useCachedBuffer ? Objectory.createStringBuilder() : new StringBuilder()).append(prefix);
}
return buffer;
}
/**
*
* @param obj
* @return
*/
private String toString(Object obj) {
return obj == null ? nullText : (trimBeforeAppend ? N.toString(obj).trim() : N.toString(obj));
}
/**
*
*
* @return
*/
public int length() {
// Remember that we never actually append the suffix unless we return
// the full (present) value or some sub-string or length of it, so that
// we can add on more if we need to.
return (buffer != null ? buffer.length() + suffix.length() : emptyValue.length());
}
/**
* Returns the current value, consisting of the {@code prefix}, the values
* added so far separated by the {@code delimiter}, and the {@code suffix},
* unless no elements have been added in which case, the
* {@code prefix + suffix} or the {@code emptyValue} characters are returned
*
*
* The underline {@code StringBuilder} will be recycled after this method is called if {@code resueStringBuilder} is set to {@code true},
* and should not continue to this instance.
*
*
* @return
*/
@Override
public String toString() {
if (buffer == null) {
return emptyValue;
} else {
try {
if (suffix.equals("")) {
return buffer.toString();
} else {
int initialLength = buffer.length();
String result = buffer.append(suffix).toString();
// reset value to pre-append initialLength
buffer.setLength(initialLength);
return result;
}
} finally {
if (useCachedBuffer) {
Objectory.recycle(buffer);
buffer = null;
}
}
}
}
/**
*
*
* @param
* @param appendable
* @return
* @throws IOException
*/
public A appendTo(final A appendable) throws IOException {
if (buffer == null) {
return appendable;
}
try {
appendable.append(buffer);
if (Strings.isNotEmpty(suffix)) {
appendable.append(suffix);
}
} finally {
if (useCachedBuffer) {
Objectory.recycle(buffer);
buffer = null;
}
}
return appendable;
}
/**
*
* The underline {@code StringBuilder} will be recycled after this method is called if {@code resueStringBuilder} is set to {@code true},
* and should not continue to this instance.
*
*
* @param
* @param
* @param mapper
* @return
* @throws E the e
*/
public T map(Throwables.Function super String, T, E> mapper) throws E {
return mapper.apply(toString());
}
/**
* Call {@code mapper} only if at least one element/object/entry is appended.
*
*
* The underline {@code StringBuilder} will be recycled after this method is called if {@code resueStringBuilder} is set to {@code true},
* and should not continue to this instance.
*
*
* @param
* @param
* @param mapper
* @return
* @throws E the e
*/
public Nullable mapIfNotEmpty(Throwables.Function super String, T, E> mapper) throws E {
N.checkArgNotNull(mapper);
return buffer == null ? Nullable. empty() : Nullable.of(mapper.apply(toString()));
}
/**
*
* The underline {@code StringBuilder} will be recycled after this method is called if {@code resueStringBuilder} is set to {@code true},
* and should not continue to this instance.
*
*
* @return
*/
public Stream stream() {
return Stream.of(toString());
}
/**
* Returns a stream with the String value generated by {@code toString()} if at least one element/object/entry is appended, otherwise an empty {@code Stream} is returned.
*
*
* The underline {@code StringBuilder} will be recycled after this method is called if {@code resueStringBuilder} is set to {@code true},
* and should not continue to this instance.
*
*
* @return
*/
public Stream streamIfNotEmpty() {
return buffer == null ? Stream. empty() : Stream.of(toString());
}
/**
* Close.
*/
@Override
public synchronized void close() {
if (buffer != null && useCachedBuffer) {
Objectory.recycle(buffer);
buffer = null;
}
}
}