Uses of Class
org.apache.commons.lang.builder.ToStringStyle
Packages that use ToStringStyle
Package
Description
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.builderFields in org.apache.commons.lang.builder declared as ToStringStyleModifier and TypeFieldDescriptionstatic final ToStringStyleToStringStyle.DEFAULT_STYLEThe default toString style.static final ToStringStyleToStringStyle.MULTI_LINE_STYLEThe multi line toString style.static final ToStringStyleToStringStyle.NO_FIELD_NAMES_STYLEThe no field names toString style.static final ToStringStyleToStringStyle.SHORT_PREFIX_STYLEThe short prefix toString style.static final ToStringStyleToStringStyle.SIMPLE_STYLEThe simple toString style.Methods in org.apache.commons.lang.builder that return ToStringStyleModifier and TypeMethodDescriptionstatic ToStringStyleToStringBuilder.getDefaultStyle()Gets the defaultToStringStyleto use.ToStringBuilder.getStyle()Gets theToStringStylebeing used.Methods in org.apache.commons.lang.builder with parameters of type ToStringStyleModifier and TypeMethodDescriptionstatic StringToStringBuilder.reflectionToString(Object object, ToStringStyle style) UsesReflectionToStringBuilderto generate atoStringfor the specified object.static StringToStringBuilder.reflectionToString(Object object, ToStringStyle style, boolean outputTransients) UsesReflectionToStringBuilderto generate atoStringfor the specified object.static StringToStringBuilder.reflectionToString(Object object, ToStringStyle style, boolean outputTransients, Class reflectUpToClass) UsesReflectionToStringBuilderto generate atoStringfor the specified object.static voidToStringBuilder.setDefaultStyle(ToStringStyle style) Sets the defaultToStringStyleto use.static StringReflectionToStringBuilder.toString(Object object, ToStringStyle style) Builds atoStringvalue through reflection.static StringReflectionToStringBuilder.toString(Object object, ToStringStyle style, boolean outputTransients) Builds atoStringvalue through reflection.static StringReflectionToStringBuilder.toString(Object object, ToStringStyle style, boolean outputTransients, boolean outputStatics) Builds atoStringvalue through reflection.static StringReflectionToStringBuilder.toString(Object object, ToStringStyle style, boolean outputTransients, boolean outputStatics, Class reflectUpToClass) Builds atoStringvalue through reflection.static StringReflectionToStringBuilder.toString(Object object, ToStringStyle style, boolean outputTransients, Class reflectUpToClass) Deprecated.Constructors in org.apache.commons.lang.builder with parameters of type ToStringStyleModifierConstructorDescriptionReflectionToStringBuilder(Object object, ToStringStyle style) Constructor.ReflectionToStringBuilder(Object object, ToStringStyle style, StringBuffer buffer) Constructor.ReflectionToStringBuilder(Object object, ToStringStyle style, StringBuffer buffer, Class reflectUpToClass, boolean outputTransients) 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.
ReflectionToStringBuilder.toString(Object,ToStringStyle,boolean,boolean,Class)