Home | History | Annotate | Download | only in base

Lines Matching defs:doForward

56  * behavior for all converters; implementations of {@link #doForward} and {@link #doBackward} are
72 * <li>Otherwise, extend this class and implement its {@link #doForward} and {@link #doBackward}
84 * <li><b>Do not</b> call {@link #doForward} or {@link #doBackward} directly; these exist only to be
122 protected abstract B doForward(A a);
154 return a == null ? null : checkNotNull(doForward(a));
156 return doForward(a);
232 protected A doForward(B b) {
316 protected C doForward(A a) {
391 * here. Instead, simply subclass {@code Converter} and implement its {@link #doForward} and
421 protected B doForward(A a) {
467 protected T doForward(T t) {