Home | History | Annotate | Download | only in base

Lines Matching full:code

29  * Helper functions that can operate on any {@code Object}.
42 * <li>{@code true} if {@code a} and {@code b} are both null.
43 * <li>{@code true} if {@code a} and {@code b} are both non-null and they are
45 * <li>{@code false} in all other situations.
49 * to the {@code equals()} contract.
56 * Generates a hash code for multiple values. The hash code is generated by
60 * in an object that has three properties, {@code x}, {@code y}, and
61 * {@code z}, one could write:
67 * <b>Warning</b>: When a single object is supplied, the returned hash code
68 * does not equal the hash code of that object.
78 * example, in an object that contains two member variables, {@code x},
79 * and {@code y}, one could write:<pre> <tt>
90 * Assuming the values of {@code x} and {@code y} are 1 and 2,
91 * this code snippet returns the string <tt>"ClassName{x=1, y=2}"</tt>.
117 * Adds a name/value pair to the formatted output in {@code name=value}
118 * format. If {@code value} is {@code null}, the string {@code "null"}
126 * Adds a value to the formatted output in {@code value} format.<p/>