aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/builder
diff options
context:
space:
mode:
authorGary Gregory <garydgregory@gmail.com>2022-05-31 11:27:42 -0400
committerGary Gregory <garydgregory@gmail.com>2022-05-31 11:27:42 -0400
commit6f3b00f36dc9638abe6721b83fe02a065c0e4d6d (patch)
treee9191ab59d48672eea57e2e94bbdcd04fc779854 /src/main/java/org/apache/commons/lang3/builder
parent9ffccd7ac3e5ee85dcef5fb8612e97589fcca91c (diff)
downloadapache-commons-lang-6f3b00f36dc9638abe6721b83fe02a065c0e4d6d.tar.gz
Remove noisy inline comments.
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/builder')
-rw-r--r--src/main/java/org/apache/commons/lang3/builder/CompareToBuilder.java1
-rw-r--r--src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java6
-rw-r--r--src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java6
-rw-r--r--src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java42
-rw-r--r--src/main/java/org/apache/commons/lang3/builder/ToStringBuilder.java45
-rw-r--r--src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java96
6 files changed, 0 insertions, 196 deletions
diff --git a/src/main/java/org/apache/commons/lang3/builder/CompareToBuilder.java b/src/main/java/org/apache/commons/lang3/builder/CompareToBuilder.java
index 1f790cf5a..bd2b5a400 100644
--- a/src/main/java/org/apache/commons/lang3/builder/CompareToBuilder.java
+++ b/src/main/java/org/apache/commons/lang3/builder/CompareToBuilder.java
@@ -458,7 +458,6 @@ public class CompareToBuilder implements Builder<Integer> {
}
}
- //-------------------------------------------------------------------------
/**
* Appends to the {@code builder} the comparison of
* two {@code long}s.
diff --git a/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java b/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java
index 41b69486e..48910a925 100644
--- a/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java
+++ b/src/main/java/org/apache/commons/lang3/builder/EqualsBuilder.java
@@ -231,8 +231,6 @@ public class EqualsBuilder implements Builder<Boolean> {
bypassReflectionClasses.add(String.class); //hashCode field being lazy but not transient
}
- //-------------------------------------------------------------------------
-
/**
* Set whether to include transient fields when reflectively comparing objects.
* @param testTransients whether to test transient fields
@@ -596,8 +594,6 @@ public class EqualsBuilder implements Builder<Boolean> {
}
}
- //-------------------------------------------------------------------------
-
/**
* <p>Adds the result of {@code super.equals()} to this builder.</p>
*
@@ -613,8 +609,6 @@ public class EqualsBuilder implements Builder<Boolean> {
return this;
}
- //-------------------------------------------------------------------------
-
/**
* <p>Test if two {@code Object}s are equal using either
* #{@link #reflectionAppend(Object, Object)}, if object are non
diff --git a/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java b/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
index a5bd230f8..46167659c 100644
--- a/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
+++ b/src/main/java/org/apache/commons/lang3/builder/HashCodeBuilder.java
@@ -448,8 +448,6 @@ public class HashCodeBuilder implements Builder<Integer> {
return reflectionHashCode(object, ReflectionToStringBuilder.toNoNullStringArray(excludeFields));
}
- // -------------------------------------------------------------------------
-
/**
* <p>
* Uses reflection to build a valid hash code from the fields of {@code object}.
@@ -619,8 +617,6 @@ public class HashCodeBuilder implements Builder<Integer> {
return this;
}
- // -------------------------------------------------------------------------
-
/**
* <p>
* Append a {@code hashCode} for a {@code byte}.
@@ -635,8 +631,6 @@ public class HashCodeBuilder implements Builder<Integer> {
return this;
}
- // -------------------------------------------------------------------------
-
/**
* <p>
* Append a {@code hashCode} for a {@code byte} array.
diff --git a/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java b/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java
index 72cd70fad..b60f13dca 100644
--- a/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java
+++ b/src/main/java/org/apache/commons/lang3/builder/StandardToStringStyle.java
@@ -42,8 +42,6 @@ public class StandardToStringStyle extends ToStringStyle {
public StandardToStringStyle() {
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to use the class name.</p>
*
@@ -64,8 +62,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setUseClassName(useClassName);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to output short or long class names.</p>
*
@@ -88,8 +84,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setUseShortClassName(useShortClassName);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to use the identity hash code.</p>
* @return the current useIdentityHashCode flag
@@ -109,8 +103,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setUseIdentityHashCode(useIdentityHashCode);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to use the field names passed in.</p>
*
@@ -131,8 +123,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setUseFieldNames(useFieldNames);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to use full detail when the caller doesn't
* specify.</p>
@@ -155,8 +145,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setDefaultFullDetail(defaultFullDetail);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to output array content detail.</p>
*
@@ -177,8 +165,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setArrayContentDetail(arrayContentDetail);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the array start text.</p>
*
@@ -202,8 +188,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setArrayStart(arrayStart);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the array end text.</p>
*
@@ -227,8 +211,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setArrayEnd(arrayEnd);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the array separator text.</p>
*
@@ -252,8 +234,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setArraySeparator(arraySeparator);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the content start text.</p>
*
@@ -277,8 +257,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setContentStart(contentStart);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the content end text.</p>
*
@@ -302,8 +280,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setContentEnd(contentEnd);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the field name value separator text.</p>
*
@@ -327,8 +303,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setFieldNameValueSeparator(fieldNameValueSeparator);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the field separator text.</p>
*
@@ -352,8 +326,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setFieldSeparator(fieldSeparator);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether the field separator should be added at the start
* of each buffer.</p>
@@ -378,8 +350,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setFieldSeparatorAtStart(fieldSeparatorAtStart);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether the field separator should be added at the end
* of each buffer.</p>
@@ -404,8 +374,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setFieldSeparatorAtEnd(fieldSeparatorAtEnd);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the text to output when {@code null} found.</p>
*
@@ -429,8 +397,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setNullText(nullText);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the text to output when a {@code Collection},
* {@code Map} or {@code Array} size is output.</p>
@@ -460,8 +426,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setSizeStartText(sizeStartText);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the end text to output when a {@code Collection},
* {@code Map} or {@code Array} size is output.</p>
@@ -491,8 +455,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setSizeEndText(sizeEndText);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the start text to output when an {@code Object} is
* output in summary mode.</p>
@@ -522,8 +484,6 @@ public class StandardToStringStyle extends ToStringStyle {
super.setSummaryObjectStartText(summaryObjectStartText);
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the end text to output when an {@code Object} is
* output in summary mode.</p>
@@ -553,6 +513,4 @@ public class StandardToStringStyle extends ToStringStyle {
super.setSummaryObjectEndText(summaryObjectEndText);
}
- //---------------------------------------------------------------------
-
}
diff --git a/src/main/java/org/apache/commons/lang3/builder/ToStringBuilder.java b/src/main/java/org/apache/commons/lang3/builder/ToStringBuilder.java
index 631c6e47e..5830051a1 100644
--- a/src/main/java/org/apache/commons/lang3/builder/ToStringBuilder.java
+++ b/src/main/java/org/apache/commons/lang3/builder/ToStringBuilder.java
@@ -93,8 +93,6 @@ public class ToStringBuilder implements Builder<String> {
*/
private static volatile ToStringStyle defaultStyle = ToStringStyle.DEFAULT_STYLE;
- //----------------------------------------------------------------------------
-
/**
* <p>Gets the default {@code ToStringStyle} to use.</p>
*
@@ -136,7 +134,6 @@ public class ToStringBuilder implements Builder<String> {
defaultStyle = Validate.notNull(style, "style");
}
- //----------------------------------------------------------------------------
/**
* <p>Uses {@code ReflectionToStringBuilder} to generate a
* {@code toString} for the specified object.</p>
@@ -197,8 +194,6 @@ public class ToStringBuilder implements Builder<String> {
return ReflectionToStringBuilder.toString(object, style, outputTransients, false, reflectUpToClass);
}
- //----------------------------------------------------------------------------
-
/**
* Current toString buffer, not null.
*/
@@ -260,8 +255,6 @@ public class ToStringBuilder implements Builder<String> {
style.appendStart(buffer, object);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code boolean}
* value.</p>
@@ -274,8 +267,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code boolean}
* array.</p>
@@ -288,8 +279,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code byte}
* value.</p>
@@ -302,8 +291,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code byte}
* array.</p>
@@ -316,8 +303,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code char}
* value.</p>
@@ -330,8 +315,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code char}
* array.</p>
@@ -344,8 +327,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code double}
* value.</p>
@@ -358,8 +339,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code double}
* array.</p>
@@ -372,8 +351,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code float}
* value.</p>
@@ -386,8 +363,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code float}
* array.</p>
@@ -400,8 +375,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} an {@code int}
* value.</p>
@@ -414,8 +387,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} an {@code int}
* array.</p>
@@ -428,8 +399,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code long}
* value.</p>
@@ -442,8 +411,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code long}
* array.</p>
@@ -456,8 +423,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} an {@code Object}
* value.</p>
@@ -470,8 +435,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} an {@code Object}
* array.</p>
@@ -484,8 +447,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code short}
* value.</p>
@@ -498,8 +459,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code short}
* array.</p>
@@ -954,8 +913,6 @@ public class ToStringBuilder implements Builder<String> {
return this;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append the {@code toString} from the superclass.</p>
*
@@ -1028,8 +985,6 @@ public class ToStringBuilder implements Builder<String> {
return buffer;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Gets the {@code ToStringStyle} being used.</p>
*
diff --git a/src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java b/src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java
index 737c67cbe..70f642f32 100644
--- a/src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java
+++ b/src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java
@@ -351,16 +351,12 @@ public abstract class ToStringStyle implements Serializable {
*/
private String summaryObjectEndText = ">";
- //----------------------------------------------------------------------------
-
/**
* <p>Constructor.</p>
*/
protected ToStringStyle() {
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} the superclass toString.</p>
* <p>NOTE: It assumes that the toString has been created from the same ToStringStyle. </p>
@@ -443,8 +439,6 @@ public abstract class ToStringStyle implements Serializable {
}
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} an {@code Object}
* value, printing the full {@code toString} of the
@@ -653,8 +647,6 @@ public abstract class ToStringStyle implements Serializable {
buffer.append(summaryObjectEndText);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code long}
* value.</p>
@@ -681,8 +673,6 @@ public abstract class ToStringStyle implements Serializable {
buffer.append(value);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} an {@code int}
* value.</p>
@@ -709,8 +699,6 @@ public abstract class ToStringStyle implements Serializable {
buffer.append(value);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code short}
* value.</p>
@@ -737,8 +725,6 @@ public abstract class ToStringStyle implements Serializable {
buffer.append(value);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code byte}
* value.</p>
@@ -765,8 +751,6 @@ public abstract class ToStringStyle implements Serializable {
buffer.append(value);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code char}
* value.</p>
@@ -793,8 +777,6 @@ public abstract class ToStringStyle implements Serializable {
buffer.append(value);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code double}
* value.</p>
@@ -821,8 +803,6 @@ public abstract class ToStringStyle implements Serializable {
buffer.append(value);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code float}
* value.</p>
@@ -849,8 +829,6 @@ public abstract class ToStringStyle implements Serializable {
buffer.append(value);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code boolean}
* value.</p>
@@ -903,8 +881,6 @@ public abstract class ToStringStyle implements Serializable {
appendFieldEnd(buffer, fieldName);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} the detail of an
* {@code Object} array.</p>
@@ -976,8 +952,6 @@ public abstract class ToStringStyle implements Serializable {
appendSummarySize(buffer, fieldName, array.length);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code long}
* array.</p>
@@ -1037,8 +1011,6 @@ public abstract class ToStringStyle implements Serializable {
appendSummarySize(buffer, fieldName, array.length);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} an {@code int}
* array.</p>
@@ -1098,8 +1070,6 @@ public abstract class ToStringStyle implements Serializable {
appendSummarySize(buffer, fieldName, array.length);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code short}
* array.</p>
@@ -1159,8 +1129,6 @@ public abstract class ToStringStyle implements Serializable {
appendSummarySize(buffer, fieldName, array.length);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code byte}
* array.</p>
@@ -1220,8 +1188,6 @@ public abstract class ToStringStyle implements Serializable {
appendSummarySize(buffer, fieldName, array.length);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code char}
* array.</p>
@@ -1281,8 +1247,6 @@ public abstract class ToStringStyle implements Serializable {
appendSummarySize(buffer, fieldName, array.length);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code double}
* array.</p>
@@ -1342,8 +1306,6 @@ public abstract class ToStringStyle implements Serializable {
appendSummarySize(buffer, fieldName, array.length);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code float}
* array.</p>
@@ -1403,8 +1365,6 @@ public abstract class ToStringStyle implements Serializable {
appendSummarySize(buffer, fieldName, array.length);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} a {@code boolean}
* array.</p>
@@ -1464,8 +1424,6 @@ public abstract class ToStringStyle implements Serializable {
appendSummarySize(buffer, fieldName, array.length);
}
- //----------------------------------------------------------------------------
-
/**
* <p>Append to the {@code toString} the class name.</p>
*
@@ -1617,8 +1575,6 @@ public abstract class ToStringStyle implements Serializable {
// Setters and getters for the customizable parts of the style
// These methods are not expected to be overridden, except to make public
// (They are not public so that immutable subclasses can be written)
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to use the class name.</p>
*
@@ -1637,8 +1593,6 @@ public abstract class ToStringStyle implements Serializable {
this.useClassName = useClassName;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to output short or long class names.</p>
*
@@ -1659,8 +1613,6 @@ public abstract class ToStringStyle implements Serializable {
this.useShortClassName = useShortClassName;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to use the identity hash code.</p>
*
@@ -1679,8 +1631,6 @@ public abstract class ToStringStyle implements Serializable {
this.useIdentityHashCode = useIdentityHashCode;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to use the field names passed in.</p>
*
@@ -1699,8 +1649,6 @@ public abstract class ToStringStyle implements Serializable {
this.useFieldNames = useFieldNames;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to use full detail when the caller doesn't
* specify.</p>
@@ -1721,8 +1669,6 @@ public abstract class ToStringStyle implements Serializable {
this.defaultFullDetail = defaultFullDetail;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether to output array content detail.</p>
*
@@ -1741,8 +1687,6 @@ public abstract class ToStringStyle implements Serializable {
this.arrayContentDetail = arrayContentDetail;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the array start text.</p>
*
@@ -1767,8 +1711,6 @@ public abstract class ToStringStyle implements Serializable {
this.arrayStart = arrayStart;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the array end text.</p>
*
@@ -1793,8 +1735,6 @@ public abstract class ToStringStyle implements Serializable {
this.arrayEnd = arrayEnd;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the array separator text.</p>
*
@@ -1819,8 +1759,6 @@ public abstract class ToStringStyle implements Serializable {
this.arraySeparator = arraySeparator;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the content start text.</p>
*
@@ -1845,8 +1783,6 @@ public abstract class ToStringStyle implements Serializable {
this.contentStart = contentStart;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the content end text.</p>
*
@@ -1871,8 +1807,6 @@ public abstract class ToStringStyle implements Serializable {
this.contentEnd = contentEnd;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the field name value separator text.</p>
*
@@ -1897,8 +1831,6 @@ public abstract class ToStringStyle implements Serializable {
this.fieldNameValueSeparator = fieldNameValueSeparator;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the field separator text.</p>
*
@@ -1923,8 +1855,6 @@ public abstract class ToStringStyle implements Serializable {
this.fieldSeparator = fieldSeparator;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether the field separator should be added at the start
* of each buffer.</p>
@@ -1947,8 +1877,6 @@ public abstract class ToStringStyle implements Serializable {
this.fieldSeparatorAtStart = fieldSeparatorAtStart;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets whether the field separator should be added at the end
* of each buffer.</p>
@@ -1971,8 +1899,6 @@ public abstract class ToStringStyle implements Serializable {
this.fieldSeparatorAtEnd = fieldSeparatorAtEnd;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the text to output when {@code null} found.</p>
*
@@ -1997,8 +1923,6 @@ public abstract class ToStringStyle implements Serializable {
this.nullText = nullText;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the start text to output when a {@code Collection},
* {@code Map} or array size is output.</p>
@@ -2029,8 +1953,6 @@ public abstract class ToStringStyle implements Serializable {
this.sizeStartText = sizeStartText;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the end text to output when a {@code Collection},
* {@code Map} or array size is output.</p>
@@ -2061,8 +1983,6 @@ public abstract class ToStringStyle implements Serializable {
this.sizeEndText = sizeEndText;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the start text to output when an {@code Object} is
* output in summary mode.</p>
@@ -2093,8 +2013,6 @@ public abstract class ToStringStyle implements Serializable {
this.summaryObjectStartText = summaryObjectStartText;
}
- //---------------------------------------------------------------------
-
/**
* <p>Gets the end text to output when an {@code Object} is
* output in summary mode.</p>
@@ -2125,8 +2043,6 @@ public abstract class ToStringStyle implements Serializable {
this.summaryObjectEndText = summaryObjectEndText;
}
- //----------------------------------------------------------------------------
-
/**
* <p>Default {@code ToStringStyle}.</p>
*
@@ -2161,8 +2077,6 @@ public abstract class ToStringStyle implements Serializable {
}
- //----------------------------------------------------------------------------
-
/**
* <p>{@code ToStringStyle} that does not print out
* the field names.</p>
@@ -2194,8 +2108,6 @@ public abstract class ToStringStyle implements Serializable {
}
- //----------------------------------------------------------------------------
-
/**
* <p>{@code ToStringStyle} that prints out the short
* class name and no identity hashcode.</p>
@@ -2227,8 +2139,6 @@ public abstract class ToStringStyle implements Serializable {
}
- //----------------------------------------------------------------------------
-
/**
* <p>{@code ToStringStyle} that does not print out the
* classname, identity hashcode, content start or field name.</p>
@@ -2263,8 +2173,6 @@ public abstract class ToStringStyle implements Serializable {
}
- //----------------------------------------------------------------------------
-
/**
* <p>{@code ToStringStyle} that outputs on multiple lines.</p>
*
@@ -2298,8 +2206,6 @@ public abstract class ToStringStyle implements Serializable {
}
- //----------------------------------------------------------------------------
-
/**
* <p>{@code ToStringStyle} that does not print out the classname
* and identity hash code but prints content start and field names.</p>
@@ -2332,8 +2238,6 @@ public abstract class ToStringStyle implements Serializable {
}
- // ----------------------------------------------------------------------------
-
/**
* <p>
* {@code ToStringStyle} that outputs with JSON format.