8141662: Javadoc fix. Do not suggest to use new Boolean(true)

Javadoc only fix of 5108778 Too many instances of java.lang.Boolean created in Java application for the java/net library

Reviewed-by: wetmore
This commit is contained in:
Sebastian Sickelmann 2015-11-10 21:13:40 +01:00
parent 5541c558b8
commit 47ec9819c2

@ -61,21 +61,21 @@ public interface SocketOptions {
* If the requested option is binary, it can be set using this method by * If the requested option is binary, it can be set using this method by
* a java.lang.Boolean: * a java.lang.Boolean:
* <BR><PRE> * <BR><PRE>
* s.setOption(TCP_NODELAY, new Boolean(true)); * s.setOption(TCP_NODELAY, Boolean.TRUE);
* // OK - enables TCP_NODELAY, a binary option * // OK - enables TCP_NODELAY, a binary option
* </PRE> * </PRE>
* <BR> * <BR>
* Any option can be disabled using this method with a Boolean(false): * Any option can be disabled using this method with a Boolean.FALSE:
* <BR><PRE> * <BR><PRE>
* s.setOption(TCP_NODELAY, new Boolean(false)); * s.setOption(TCP_NODELAY, Boolean.FALSE);
* // OK - disables TCP_NODELAY * // OK - disables TCP_NODELAY
* s.setOption(SO_LINGER, new Boolean(false)); * s.setOption(SO_LINGER, Boolean.FALSE);
* // OK - disables SO_LINGER * // OK - disables SO_LINGER
* </PRE> * </PRE>
* <BR> * <BR>
* For an option that has a notion of on and off, and requires * For an option that has a notion of on and off, and requires
* a non-boolean parameter, setting its value to anything other than * a non-boolean parameter, setting its value to anything other than
* <I>Boolean(false)</I> implicitly enables it. * <I>Boolean.FALSE</I> implicitly enables it.
* <BR> * <BR>
* Throws SocketException if the option is unrecognized, * Throws SocketException if the option is unrecognized,
* the socket is closed, or some low-level error occurred * the socket is closed, or some low-level error occurred
@ -91,8 +91,8 @@ public interface SocketOptions {
/** /**
* Fetch the value of an option. * Fetch the value of an option.
* Binary options will return java.lang.Boolean(true) * Binary options will return java.lang.Boolean.TRUE
* if enabled, java.lang.Boolean(false) if disabled, e.g.: * if enabled, java.lang.Boolean.FALSE if disabled, e.g.:
* <BR><PRE> * <BR><PRE>
* SocketImpl s; * SocketImpl s;
* ... * ...
@ -105,13 +105,13 @@ public interface SocketOptions {
* <P> * <P>
* For options that take a particular type as a parameter, * For options that take a particular type as a parameter,
* getOption(int) will return the parameter's value, else * getOption(int) will return the parameter's value, else
* it will return java.lang.Boolean(false): * it will return java.lang.Boolean.FALSE:
* <PRE> * <PRE>
* Object o = s.getOption(SO_LINGER); * Object o = s.getOption(SO_LINGER);
* if (o instanceof Integer) { * if (o instanceof Integer) {
* System.out.print("Linger time is " + ((Integer)o).intValue()); * System.out.print("Linger time is " + ((Integer)o).intValue());
* } else { * } else {
* // the true type of o is java.lang.Boolean(false); * // the true type of o is java.lang.Boolean.FALSE;
* } * }
* </PRE> * </PRE>
* *