Package | Description |
---|---|
org.apache.commons.lang3.builder |
Assists in creating consistent
equals(Object) , toString() , hashCode() , and compareTo(Object) methods. |
Modifier and Type | Class and Description |
---|---|
class |
RecursiveToStringStyle
Works with
ToStringBuilder to create a "deep" toString . |
class |
StandardToStringStyle
Works with
ToStringBuilder to create a toString . |
Modifier and Type | Field and Description |
---|---|
static ToStringStyle |
ToStringStyle.DEFAULT_STYLE
The default toString style.
|
static ToStringStyle |
ToStringStyle.JSON_STYLE
The JSON toString style.
|
static ToStringStyle |
ToStringStyle.MULTI_LINE_STYLE
The multi line toString style.
|
static ToStringStyle |
ToStringStyle.NO_CLASS_NAME_STYLE
The no class name toString style.
|
static ToStringStyle |
ToStringStyle.NO_FIELD_NAMES_STYLE
The no field names toString style.
|
static ToStringStyle |
ToStringStyle.SHORT_PREFIX_STYLE
The short prefix toString style.
|
static ToStringStyle |
ToStringStyle.SIMPLE_STYLE
The simple toString style.
|
Modifier and Type | Method and Description |
---|---|
static ToStringStyle |
ToStringBuilder.getDefaultStyle()
Gets the default
ToStringStyle to use. |
ToStringStyle |
ToStringBuilder.getStyle()
Gets the
ToStringStyle being used. |
ToStringStyle |
DiffResult.getToStringStyle()
Returns the style used by the
DiffResult.toString() method. |
Modifier and Type | Method and Description |
---|---|
static String |
ToStringBuilder.reflectionToString(Object object,
ToStringStyle style)
Uses
ReflectionToStringBuilder to generate a
toString for the specified object. |
static String |
ToStringBuilder.reflectionToString(Object object,
ToStringStyle style,
boolean outputTransients)
Uses
ReflectionToStringBuilder to generate a
toString for the specified object. |
static <T> String |
ToStringBuilder.reflectionToString(T object,
ToStringStyle style,
boolean outputTransients,
Class<? super T> reflectUpToClass)
Uses
ReflectionToStringBuilder to generate a
toString for the specified object. |
static void |
ToStringBuilder.setDefaultStyle(ToStringStyle style)
Sets the default
ToStringStyle to use. |
static String |
ReflectionToStringBuilder.toString(Object object,
ToStringStyle style)
Builds a
toString value through reflection. |
static String |
ReflectionToStringBuilder.toString(Object object,
ToStringStyle style,
boolean outputTransients)
Builds a
toString value through reflection. |
static String |
ReflectionToStringBuilder.toString(Object object,
ToStringStyle style,
boolean outputTransients,
boolean outputStatics)
Builds a
toString value through reflection. |
String |
DiffResult.toString(ToStringStyle style)
Builds a
String description of the differences contained within
this DiffResult , using the supplied ToStringStyle . |
static <T> String |
ReflectionToStringBuilder.toString(T object,
ToStringStyle style,
boolean outputTransients,
boolean outputStatics,
Class<? super T> reflectUpToClass)
Builds a
toString value through reflection. |
Constructor and Description |
---|
DiffBuilder(Object lhs,
Object rhs,
ToStringStyle style)
Constructs a builder for the specified objects with the specified style.
|
DiffBuilder(Object lhs,
Object rhs,
ToStringStyle style,
boolean testTriviallyEqual)
Constructs a builder for the specified objects with the specified style.
|
ReflectionToStringBuilder(Object object,
ToStringStyle style)
Constructor.
|
ReflectionToStringBuilder(Object object,
ToStringStyle style,
StringBuffer buffer)
Constructor.
|
ReflectionToStringBuilder(T object,
ToStringStyle style,
StringBuffer buffer,
Class<? super T> reflectUpToClass,
boolean outputTransients,
boolean outputStatics)
Constructor.
|
ToStringBuilder(Object object,
ToStringStyle style)
Constructs a builder for the specified object using the a defined output style.
|
ToStringBuilder(Object object,
ToStringStyle style,
StringBuffer buffer)
Constructs a builder for the specified object.
|
Copyright © 2001–2015 The Apache Software Foundation. All rights reserved.