コード例 #1
0
 public ToStringBuilder append(boolean paramBoolean) {
   style.append(buffer, null, paramBoolean);
   return this;
 }
コード例 #2
0
 /**
  * Append to the <code>toString</code> an <code>Object</code> value.
  *
  * @param fieldName the field name
  * @param obj the value to add to the <code>toString</code>
  * @param fullDetail <code>true</code> for detail, <code>false</code> for summary info
  * @return this
  */
 public ToStringBuilder append(String fieldName, Object obj, boolean fullDetail) {
   style.append(buffer, fieldName, obj, Boolean.valueOf(fullDetail));
   return this;
 }
コード例 #3
0
 /**
  * Append to the <code>toString</code> a <code>short</code> array.
  *
  * @param fieldName the field name
  * @param array the array to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(String fieldName, short[] array) {
   style.append(buffer, fieldName, array, null);
   return this;
 }
コード例 #4
0
 /**
  * Append to the <code>toString</code> an <code>Object</code> value.
  *
  * @param obj the value to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(Object obj) {
   style.append(buffer, null, obj, null);
   return this;
 }
コード例 #5
0
 /**
  * Append to the <code>toString</code> a <code>short</code> array.
  *
  * @param array the array to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(short[] array) {
   style.append(buffer, null, array, null);
   return this;
 }
コード例 #6
0
 /**
  * Append to the <code>toString</code> a <code>long</code> array.
  *
  * @param array the array to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(final long[] array) {
   style.append(buffer, null, array, null);
   return this;
 }
コード例 #7
0
 /**
  * Append to the <code>toString</code> an <code>Object</code> array.
  *
  * @param fieldName the field name
  * @param array the array to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(final String fieldName, final Object[] array) {
   style.append(buffer, fieldName, array, null);
   return this;
 }
コード例 #8
0
 public ToStringBuilder append(long[] paramArrayOfLong) {
   style.append(buffer, null, paramArrayOfLong, null);
   return this;
 }
コード例 #9
0
 public ToStringBuilder append(short[] paramArrayOfShort) {
   style.append(buffer, null, paramArrayOfShort, null);
   return this;
 }
コード例 #10
0
 public ToStringBuilder append(float[] paramArrayOfFloat) {
   style.append(buffer, null, paramArrayOfFloat, null);
   return this;
 }
コード例 #11
0
 public ToStringBuilder append(int[] paramArrayOfInt) {
   style.append(buffer, null, paramArrayOfInt, null);
   return this;
 }
コード例 #12
0
 public ToStringBuilder append(double[] paramArrayOfDouble) {
   style.append(buffer, null, paramArrayOfDouble, null);
   return this;
 }
コード例 #13
0
 public ToStringBuilder append(char[] paramArrayOfChar) {
   style.append(buffer, null, paramArrayOfChar, null);
   return this;
 }
コード例 #14
0
 public ToStringBuilder append(byte[] paramArrayOfByte) {
   style.append(buffer, null, paramArrayOfByte, null);
   return this;
 }
コード例 #15
0
 public ToStringBuilder append(Object paramObject) {
   style.append(buffer, null, paramObject, null);
   return this;
 }
コード例 #16
0
 public ToStringBuilder append(boolean[] paramArrayOfBoolean) {
   style.append(buffer, null, paramArrayOfBoolean, null);
   return this;
 }
コード例 #17
0
 /**
  * Append to the <code>toString</code> a <code>long</code> value.
  *
  * @param value the value to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(final long value) {
   style.append(buffer, null, value);
   return this;
 }
コード例 #18
0
 public ToStringBuilder append(byte paramByte) {
   style.append(buffer, null, paramByte);
   return this;
 }
コード例 #19
0
 /**
  * Append to the <code>toString</code> a <code>long</code> value.
  *
  * @param fieldName the field name
  * @param value the value to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(final String fieldName, final long value) {
   style.append(buffer, fieldName, value);
   return this;
 }
コード例 #20
0
 public ToStringBuilder append(char paramChar) {
   style.append(buffer, null, paramChar);
   return this;
 }
コード例 #21
0
 /**
  * Append to the <code>toString</code> an <code>Object</code> array.
  *
  * <p>A boolean parameter controls the level of detail to show. Setting <code>true</code> will
  * output the array in full. Setting <code>false</code> will output a summary, typically the size
  * of the array.
  *
  * @param fieldName the field name
  * @param array the array to add to the <code>toString</code>
  * @param fullDetail <code>true</code> for detail, <code>false</code> for summary info
  * @return this
  */
 public ToStringBuilder append(
     final String fieldName, final Object[] array, final boolean fullDetail) {
   style.append(buffer, fieldName, array, Boolean.valueOf(fullDetail));
   return this;
 }
コード例 #22
0
 public ToStringBuilder append(double paramDouble) {
   style.append(buffer, null, paramDouble);
   return this;
 }
コード例 #23
0
 /**
  * Append to the <code>toString</code> a <code>short</code> value.
  *
  * @param value the value to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(short value) {
   style.append(buffer, null, value);
   return this;
 }
コード例 #24
0
 public ToStringBuilder append(float paramFloat) {
   style.append(buffer, null, paramFloat);
   return this;
 }
コード例 #25
0
 /**
  * Append to the <code>toString</code> an <code>Object</code> value.
  *
  * @param fieldName the field name
  * @param obj the value to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(String fieldName, Object obj) {
   style.append(buffer, fieldName, obj, null);
   return this;
 }
コード例 #26
0
 public ToStringBuilder append(int paramInt) {
   style.append(buffer, null, paramInt);
   return this;
 }
コード例 #27
0
 /**
  * Append to the <code>toString</code> an <code>short</code> value.
  *
  * @param fieldName the field name
  * @param value the value to add to the <code>toString</code>
  * @return this
  */
 public ToStringBuilder append(String fieldName, short value) {
   style.append(buffer, fieldName, value);
   return this;
 }
コード例 #28
0
 public ToStringBuilder append(long paramLong) {
   style.append(buffer, null, paramLong);
   return this;
 }
コード例 #29
0
 /**
  * Append to the <code>toString</code> a <code>short</code> array.
  *
  * <p>A boolean parameter controls the level of detail to show. Setting <code>true</code> will
  * output the array in full. Setting <code>false</code> will output a summary, typically the size
  * of the array.
  *
  * @param fieldName the field name
  * @param array the array to add to the <code>toString</code>
  * @param fullDetail <code>true</code> for detail, <code>false</code> for summary info
  * @return this
  */
 public ToStringBuilder append(String fieldName, short[] array, boolean fullDetail) {
   style.append(buffer, fieldName, array, Boolean.valueOf(fullDetail));
   return this;
 }
コード例 #30
0
 public ToStringBuilder append(short paramShort) {
   style.append(buffer, null, paramShort);
   return this;
 }