Better Javadoc

This commit is contained in:
Gary Gregory 2023-12-17 10:16:14 -05:00
parent 6bc2565542
commit beae5e10fd
2 changed files with 3 additions and 3 deletions

View File

@ -293,7 +293,7 @@ public class SetUtils {
/** /**
* Tests two sets for equality as per the {@code equals()} contract * Tests two sets for equality as per the {@code equals()} contract
* in {@link java.util.Set#equals(java.lang.Object)}. * in {@link java.util.Set#equals(Object)}.
* <p> * <p>
* This method is useful for implementing {@code Set} when you cannot * This method is useful for implementing {@code Set} when you cannot
* extend AbstractSet. The method takes Collection instances to enable other * extend AbstractSet. The method takes Collection instances to enable other

View File

@ -55,7 +55,7 @@ import org.apache.commons.collections4.functors.SwitchTransformer;
* <li>Null - always returns null * <li>Null - always returns null
* <li>NOP - returns the input object, which should be immutable * <li>NOP - returns the input object, which should be immutable
* <li>Exception - always throws an exception * <li>Exception - always throws an exception
* <li>StringValue - returns a {@code java.lang.String} representation of the input object * <li>StringValue - returns a {@link String} representation of the input object
* </ul> * </ul>
* <p> * <p>
* Since v4.1 only transformers which are considered to be safe are * Since v4.1 only transformers which are considered to be safe are
@ -470,7 +470,7 @@ public class TransformerUtils {
} }
/** /**
* Gets a transformer that returns a {@code java.lang.String} * Gets a transformer that returns a {@link String}
* representation of the input object. This is achieved via the * representation of the input object. This is achieved via the
* {@code toString} method, {@code null} returns 'null'. * {@code toString} method, {@code null} returns 'null'.
* *