Add missing Javadoc tags.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@491645 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2007-01-01 21:51:30 +00:00
parent a17bdf3a36
commit 7d7b3e3877
1 changed files with 24 additions and 0 deletions

View File

@ -118,6 +118,9 @@ public static ToStringStyle getDefaultStyle() {
/**
* <p>Forwards to <code>ReflectionToStringBuilder</code>.</p>
*
* @param object
* the Object to be output
* @return the String result
* @see ReflectionToStringBuilder#toString(Object)
*/
public static String reflectionToString(Object object) {
@ -127,6 +130,11 @@ public static String reflectionToString(Object object) {
/**
* <p>Forwards to <code>ReflectionToStringBuilder</code>.</p>
*
* @param object
* the Object to be output
* @param style
* the style of the <code>toString</code> to create, may be <code>null</code>
* @return the String result
* @see ReflectionToStringBuilder#toString(Object,ToStringStyle)
*/
public static String reflectionToString(Object object, ToStringStyle style) {
@ -136,6 +144,13 @@ public static String reflectionToString(Object object, ToStringStyle style) {
/**
* <p>Forwards to <code>ReflectionToStringBuilder</code>.</p>
*
* @param object
* the Object to be output
* @param style
* the style of the <code>toString</code> to create, may be <code>null</code>
* @param outputTransients
* whether to include transient fields
* @return the String result
* @see ReflectionToStringBuilder#toString(Object,ToStringStyle,boolean)
*/
public static String reflectionToString(Object object, ToStringStyle style, boolean outputTransients) {
@ -145,6 +160,15 @@ public static String reflectionToString(Object object, ToStringStyle style, bool
/**
* <p>Forwards to <code>ReflectionToStringBuilder</code>.</p>
*
* @param object
* the Object to be output
* @param style
* the style of the <code>toString</code> to create, may be <code>null</code>
* @param outputTransients
* whether to include transient fields
* @param reflectUpToClass
* the superclass to reflect up to (inclusive), may be <code>null</code>
* @return the String result
* @see ReflectionToStringBuilder#toString(Object,ToStringStyle,boolean,boolean,Class)
* @since 2.0
*/