Lines Matching refs:that

36  * <p>The reverse operation <b>may</b> be a strict <i>inverse</i> (meaning that {@code
47 * <p>Note that it should still be the case that the round-tripped and original objects are
131 * very rare. Note that if backward conversion is not only unimplemented but
171 * Returns an iterable that applies {@code convert} to each element of {@code fromIterable}. The
261 ReverseConverter<?, ?> that = (ReverseConverter<?, ?>) object;
262 return this.original.equals(that.original);
333 ConverterComposition<?, ?, ?> that = (ConverterComposition<?, ?, ?>) object;
334 return this.first.equals(that.first)
335 && this.second.equals(that.second);
368 * {@link Converter} that it considers <i>interchangeable</i> with this one. "Interchangeable"
369 * <i>typically</i> means that {@code Objects.equal(this.convert(a), that.convert(a))} is true for
370 * all {@code a} of type {@code A} (and similarly for {@code reverse}). Note that a {@code false}
371 * result from this method does not imply that the converters are known <i>not</i> to be
382 * Returns a converter based on <i>existing</i> forward and backward functions. Note that it is
426 FunctionBasedConverter<?, ?> that = (FunctionBasedConverter<?, ?>) object;
427 return this.forwardFunction.equals(that.forwardFunction)
428 && this.backwardFunction.equals(that.backwardFunction);
445 * Returns a serializable converter that always converts or reverses an object to itself.
453 * A converter that always converts or reverses an object to itself. Note that T is now a