Interface RecordVisitor<T>

Type Parameters:
T - the returned type by the visitor if it owns a state.
All Superinterfaces:
BiFunction<T,T,T>, BinaryOperator<T>, Supplier<T>

public interface RecordVisitor<T> extends Supplier<T>, BinaryOperator<T>
Visitor enabling to browse a record. All methods are adapters - implementing a no-op by default.