Interface LogicalPlanPrinter
- All Known Implementing Classes:
TextBasedLogicalPlanPrinterImpl
public interface LogicalPlanPrinter
Implementations of this interface provide the functionality
to print logical plans in some way.
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionvoidprint(LogicalPlan plan, PrintStream out, LogicalPlanPrinter.LogicalPlanStage planType) Prints the given plan to the given stream.voidprint(LogicalPlan plan, LogicalPlanPrinter.LogicalPlanStage planType) Prints the given plan to the stream(s) that are stored in this printer.
-
Method Details
-
print
Prints the given plan to the given stream. Plan type is used to distinguish between different types of plans when printing. -
print
Prints the given plan to the stream(s) that are stored in this printer. Plan type is used to distinguish between different types of plans when printing.
-