|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.lang3.builder.ToStringStyle org.apache.commons.lang3.builder.StandardToStringStyle
public class StandardToStringStyle
Works with ToStringBuilder
to create a toString
.
This class is intended to be used as a singleton. There is no need to instantiate a new style each time. Simply instantiate the class once, customize the values as required, and store the result in a public static final variable for the rest of the program to access.
Field Summary |
---|
Fields inherited from class org.apache.commons.lang3.builder.ToStringStyle |
---|
DEFAULT_STYLE, MULTI_LINE_STYLE, NO_FIELD_NAMES_STYLE, SHORT_PREFIX_STYLE, SIMPLE_STYLE |
Constructor Summary | |
---|---|
StandardToStringStyle()
Constructor. |
Method Summary | |
---|---|
String |
getArrayEnd()
Gets the array end text. |
String |
getArraySeparator()
Gets the array separator text. |
String |
getArrayStart()
Gets the array start text. |
String |
getContentEnd()
Gets the content end text. |
String |
getContentStart()
Gets the content start text. |
String |
getFieldNameValueSeparator()
Gets the field name value separator text. |
String |
getFieldSeparator()
Gets the field separator text. |
String |
getNullText()
Gets the text to output when null found. |
String |
getSizeEndText()
Gets the end text to output when a Collection ,
Map or Array size is output. |
String |
getSizeStartText()
Gets the text to output when a Collection ,
Map or Array size is output. |
String |
getSummaryObjectEndText()
Gets the end text to output when an Object is
output in summary mode. |
String |
getSummaryObjectStartText()
Gets the start text to output when an Object is
output in summary mode. |
boolean |
isArrayContentDetail()
Gets whether to output array content detail. |
boolean |
isDefaultFullDetail()
Gets whether to use full detail when the caller doesn't specify. |
boolean |
isFieldSeparatorAtEnd()
Gets whether the field separator should be added at the end of each buffer. |
boolean |
isFieldSeparatorAtStart()
Gets whether the field separator should be added at the start of each buffer. |
boolean |
isUseClassName()
Gets whether to use the class name. |
boolean |
isUseFieldNames()
Gets whether to use the field names passed in. |
boolean |
isUseIdentityHashCode()
Gets whether to use the identity hash code. |
boolean |
isUseShortClassName()
Gets whether to output short or long class names. |
void |
setArrayContentDetail(boolean arrayContentDetail)
Sets whether to output array content detail. |
void |
setArrayEnd(String arrayEnd)
Sets the array end text. |
void |
setArraySeparator(String arraySeparator)
Sets the array separator text. |
void |
setArrayStart(String arrayStart)
Sets the array start text. |
void |
setContentEnd(String contentEnd)
Sets the content end text. |
void |
setContentStart(String contentStart)
Sets the content start text. |
void |
setDefaultFullDetail(boolean defaultFullDetail)
Sets whether to use full detail when the caller doesn't specify. |
void |
setFieldNameValueSeparator(String fieldNameValueSeparator)
Sets the field name value separator text. |
void |
setFieldSeparator(String fieldSeparator)
Sets the field separator text. |
void |
setFieldSeparatorAtEnd(boolean fieldSeparatorAtEnd)
Sets whether the field separator should be added at the end of each buffer. |
void |
setFieldSeparatorAtStart(boolean fieldSeparatorAtStart)
Sets whether the field separator should be added at the start of each buffer. |
void |
setNullText(String nullText)
Sets the text to output when null found. |
void |
setSizeEndText(String sizeEndText)
Sets the end text to output when a Collection ,
Map or Array size is output. |
void |
setSizeStartText(String sizeStartText)
Sets the start text to output when a Collection ,
Map or Array size is output. |
void |
setSummaryObjectEndText(String summaryObjectEndText)
Sets the end text to output when an Object is
output in summary mode. |
void |
setSummaryObjectStartText(String summaryObjectStartText)
Sets the start text to output when an Object is
output in summary mode. |
void |
setUseClassName(boolean useClassName)
Sets whether to use the class name. |
void |
setUseFieldNames(boolean useFieldNames)
Sets whether to use the field names passed in. |
void |
setUseIdentityHashCode(boolean useIdentityHashCode)
Sets whether to use the identity hash code. |
void |
setUseShortClassName(boolean useShortClassName)
Sets whether to output short or long class names. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public StandardToStringStyle()
Constructor.
Method Detail |
---|
public boolean isUseClassName()
Gets whether to use the class name.
isUseClassName
in class ToStringStyle
public void setUseClassName(boolean useClassName)
Sets whether to use the class name.
setUseClassName
in class ToStringStyle
useClassName
- the new useClassName flagpublic boolean isUseShortClassName()
Gets whether to output short or long class names.
isUseShortClassName
in class ToStringStyle
public void setUseShortClassName(boolean useShortClassName)
Sets whether to output short or long class names.
setUseShortClassName
in class ToStringStyle
useShortClassName
- the new useShortClassName flagpublic boolean isUseIdentityHashCode()
Gets whether to use the identity hash code.
isUseIdentityHashCode
in class ToStringStyle
public void setUseIdentityHashCode(boolean useIdentityHashCode)
Sets whether to use the identity hash code.
setUseIdentityHashCode
in class ToStringStyle
useIdentityHashCode
- the new useIdentityHashCode flagpublic boolean isUseFieldNames()
Gets whether to use the field names passed in.
isUseFieldNames
in class ToStringStyle
public void setUseFieldNames(boolean useFieldNames)
Sets whether to use the field names passed in.
setUseFieldNames
in class ToStringStyle
useFieldNames
- the new useFieldNames flagpublic boolean isDefaultFullDetail()
Gets whether to use full detail when the caller doesn't specify.
isDefaultFullDetail
in class ToStringStyle
public void setDefaultFullDetail(boolean defaultFullDetail)
Sets whether to use full detail when the caller doesn't specify.
setDefaultFullDetail
in class ToStringStyle
defaultFullDetail
- the new defaultFullDetail flagpublic boolean isArrayContentDetail()
Gets whether to output array content detail.
isArrayContentDetail
in class ToStringStyle
public void setArrayContentDetail(boolean arrayContentDetail)
Sets whether to output array content detail.
setArrayContentDetail
in class ToStringStyle
arrayContentDetail
- the new arrayContentDetail flagpublic String getArrayStart()
Gets the array start text.
getArrayStart
in class ToStringStyle
public void setArrayStart(String arrayStart)
Sets the array start text.
null
is accepted, but will be converted
to an empty String.
setArrayStart
in class ToStringStyle
arrayStart
- the new array start textpublic String getArrayEnd()
Gets the array end text.
getArrayEnd
in class ToStringStyle
public void setArrayEnd(String arrayEnd)
Sets the array end text.
null
is accepted, but will be converted
to an empty String.
setArrayEnd
in class ToStringStyle
arrayEnd
- the new array end textpublic String getArraySeparator()
Gets the array separator text.
getArraySeparator
in class ToStringStyle
public void setArraySeparator(String arraySeparator)
Sets the array separator text.
null
is accepted, but will be converted
to an empty String.
setArraySeparator
in class ToStringStyle
arraySeparator
- the new array separator textpublic String getContentStart()
Gets the content start text.
getContentStart
in class ToStringStyle
public void setContentStart(String contentStart)
Sets the content start text.
null
is accepted, but will be converted
to an empty String.
setContentStart
in class ToStringStyle
contentStart
- the new content start textpublic String getContentEnd()
Gets the content end text.
getContentEnd
in class ToStringStyle
public void setContentEnd(String contentEnd)
Sets the content end text.
null
is accepted, but will be converted
to an empty String.
setContentEnd
in class ToStringStyle
contentEnd
- the new content end textpublic String getFieldNameValueSeparator()
Gets the field name value separator text.
getFieldNameValueSeparator
in class ToStringStyle
public void setFieldNameValueSeparator(String fieldNameValueSeparator)
Sets the field name value separator text.
null
is accepted, but will be converted
to an empty String.
setFieldNameValueSeparator
in class ToStringStyle
fieldNameValueSeparator
- the new field name value separator textpublic String getFieldSeparator()
Gets the field separator text.
getFieldSeparator
in class ToStringStyle
public void setFieldSeparator(String fieldSeparator)
Sets the field separator text.
null
is accepted, but will be converted
to an empty String.
setFieldSeparator
in class ToStringStyle
fieldSeparator
- the new field separator textpublic boolean isFieldSeparatorAtStart()
Gets whether the field separator should be added at the start of each buffer.
isFieldSeparatorAtStart
in class ToStringStyle
public void setFieldSeparatorAtStart(boolean fieldSeparatorAtStart)
Sets whether the field separator should be added at the start of each buffer.
setFieldSeparatorAtStart
in class ToStringStyle
fieldSeparatorAtStart
- the fieldSeparatorAtStart flagpublic boolean isFieldSeparatorAtEnd()
Gets whether the field separator should be added at the end of each buffer.
isFieldSeparatorAtEnd
in class ToStringStyle
public void setFieldSeparatorAtEnd(boolean fieldSeparatorAtEnd)
Sets whether the field separator should be added at the end of each buffer.
setFieldSeparatorAtEnd
in class ToStringStyle
fieldSeparatorAtEnd
- the fieldSeparatorAtEnd flagpublic String getNullText()
Gets the text to output when null
found.
getNullText
in class ToStringStyle
null
foundpublic void setNullText(String nullText)
Sets the text to output when null
found.
null
is accepted, but will be converted
to an empty String.
setNullText
in class ToStringStyle
nullText
- the new text to output when null
foundpublic String getSizeStartText()
Gets the text to output when a Collection
,
Map
or Array
size is output.
This is output before the size value.
getSizeStartText
in class ToStringStyle
public void setSizeStartText(String sizeStartText)
Sets the start text to output when a Collection
,
Map
or Array
size is output.
This is output before the size value.
null
is accepted, but will be converted to
an empty String.
setSizeStartText
in class ToStringStyle
sizeStartText
- the new start of size textpublic String getSizeEndText()
Collection
,
Map
or Array
size is output.
This is output after the size value.
getSizeEndText
in class ToStringStyle
public void setSizeEndText(String sizeEndText)
Sets the end text to output when a Collection
,
Map
or Array
size is output.
This is output after the size value.
null
is accepted, but will be converted
to an empty String.
setSizeEndText
in class ToStringStyle
sizeEndText
- the new end of size textpublic String getSummaryObjectStartText()
Gets the start text to output when an Object
is
output in summary mode.
This is output before the size value.
getSummaryObjectStartText
in class ToStringStyle
public void setSummaryObjectStartText(String summaryObjectStartText)
Sets the start text to output when an Object
is
output in summary mode.
This is output before the size value.
null
is accepted, but will be converted to
an empty String.
setSummaryObjectStartText
in class ToStringStyle
summaryObjectStartText
- the new start of summary textpublic String getSummaryObjectEndText()
Gets the end text to output when an Object
is
output in summary mode.
This is output after the size value.
getSummaryObjectEndText
in class ToStringStyle
public void setSummaryObjectEndText(String summaryObjectEndText)
Sets the end text to output when an Object
is
output in summary mode.
This is output after the size value.
null
is accepted, but will be converted to
an empty String.
setSummaryObjectEndText
in class ToStringStyle
summaryObjectEndText
- the new end of summary text
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |