Uses of Class
org.apache.commons.lang.builder.ToStringStyle

Packages that use ToStringStyle
org.apache.commons.lang.builder Assists in creating consistent equals(Object), toString(), hashCode(), and compareTo(Object) methods. 
 

Uses of ToStringStyle in org.apache.commons.lang.builder
 

Subclasses of ToStringStyle in org.apache.commons.lang.builder
 class StandardToStringStyle
          Works with ToStringBuilder to create a toString.
 

Fields in org.apache.commons.lang.builder declared as ToStringStyle
static ToStringStyle ToStringStyle.DEFAULT_STYLE
          The default toString style.
static ToStringStyle ToStringStyle.MULTI_LINE_STYLE
          The multi line 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.
 

Methods in org.apache.commons.lang.builder that return ToStringStyle
static ToStringStyle ToStringBuilder.getDefaultStyle()
          Gets the default ToStringStyle to use.
 ToStringStyle ToStringBuilder.getStyle()
          Gets the ToStringStyle being used.
 

Methods in org.apache.commons.lang.builder with parameters of type ToStringStyle
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 String ToStringBuilder.reflectionToString(Object object, ToStringStyle style, boolean outputTransients, Class 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.
static String ReflectionToStringBuilder.toString(Object object, ToStringStyle style, boolean outputTransients, boolean outputStatics, Class reflectUpToClass)
           Builds a toString value through reflection.
static String ReflectionToStringBuilder.toString(Object object, ToStringStyle style, boolean outputTransients, Class reflectUpToClass)
          Deprecated. Use ReflectionToStringBuilder.toString(Object,ToStringStyle,boolean,boolean,Class)
 

Constructors in org.apache.commons.lang.builder with parameters of type ToStringStyle
ReflectionToStringBuilder(Object object, ToStringStyle style)
           Constructor.
ReflectionToStringBuilder(Object object, ToStringStyle style, StringBuffer buffer)
           Constructor.
ReflectionToStringBuilder(Object object, ToStringStyle style, StringBuffer buffer, Class reflectUpToClass, boolean outputTransients)
          Deprecated. Use ReflectionToStringBuilder.ReflectionToStringBuilder(Object,ToStringStyle,StringBuffer,Class,boolean,boolean).
ReflectionToStringBuilder(Object object, ToStringStyle style, StringBuffer buffer, Class 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-2011 The Apache Software Foundation. All Rights Reserved.