Uses of Class
org.apache.commons.lang.builder.ToStringStyle
-
Packages that use ToStringStyle Package Description org.apache.commons.lang.builder Assists in creating consistentequals(Object),toString(),hashCode(), andcompareTo(Object)methods. -
-
Uses of ToStringStyle in org.apache.commons.lang.builder
Subclasses of ToStringStyle in org.apache.commons.lang.builder Modifier and Type Class Description classStandardToStringStyleWorks withToStringBuilderto create atoString.Fields in org.apache.commons.lang.builder declared as ToStringStyle Modifier and Type Field Description static ToStringStyleToStringStyle. DEFAULT_STYLEThe default toString style.static ToStringStyleToStringStyle. MULTI_LINE_STYLEThe multi line toString style.static ToStringStyleToStringStyle. NO_FIELD_NAMES_STYLEThe no field names toString style.static ToStringStyleToStringStyle. SHORT_PREFIX_STYLEThe short prefix toString style.static ToStringStyleToStringStyle. SIMPLE_STYLEThe simple toString style.Methods in org.apache.commons.lang.builder that return ToStringStyle Modifier and Type Method Description static ToStringStyleToStringBuilder. getDefaultStyle()Gets the defaultToStringStyleto use.ToStringStyleToStringBuilder. getStyle()Gets theToStringStylebeing used.Methods in org.apache.commons.lang.builder with parameters of type ToStringStyle Modifier and Type Method Description static 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)Constructors in org.apache.commons.lang.builder with parameters of type ToStringStyle Constructor Description 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)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.
-