Uses of Interface
graphql.schema.diff.reporting.DifferenceReporter
-
Packages that use DifferenceReporter Package Description graphql.schema.diff graphql.schema.diff.reporting -
-
Uses of DifferenceReporter in graphql.schema.diff
Classes in graphql.schema.diff that implement DifferenceReporter Modifier and Type Class Description private static class
SchemaDiff.CountingReporter
Fields in graphql.schema.diff declared as DifferenceReporter Modifier and Type Field Description (package private) DifferenceReporter
SchemaDiff.CountingReporter. delegate
private DifferenceReporter
DiffCtx. reporter
Methods in graphql.schema.diff with parameters of type DifferenceReporter Modifier and Type Method Description int
SchemaDiff. diffSchema(DiffSet diffSet, DifferenceReporter reporter)
Deprecated.int
SchemaDiff. diffSchema(SchemaDiffSet schemaDiffSet, DifferenceReporter reporter)
This will perform a difference on the two schemas.private void
SchemaDiff. diffSchemaImpl(Document oldDoc, Document newDoc, DifferenceReporter reporter)
Constructors in graphql.schema.diff with parameters of type DifferenceReporter Constructor Description CountingReporter(DifferenceReporter delegate)
DiffCtx(DifferenceReporter reporter, Document oldDoc, Document newDoc)
-
Uses of DifferenceReporter in graphql.schema.diff.reporting
Classes in graphql.schema.diff.reporting that implement DifferenceReporter Modifier and Type Class Description class
CapturingReporter
A reporter that captures all the difference events as they occurclass
ChainedReporter
A reporter that chains together one or more difference reportersclass
PrintStreamReporter
A reporter that prints its output to a PrintStreamFields in graphql.schema.diff.reporting with type parameters of type DifferenceReporter Modifier and Type Field Description private java.util.List<DifferenceReporter>
ChainedReporter. reporters
Constructors in graphql.schema.diff.reporting with parameters of type DifferenceReporter Constructor Description ChainedReporter(DifferenceReporter... reporters)
Constructor parameters in graphql.schema.diff.reporting with type arguments of type DifferenceReporter Constructor Description ChainedReporter(java.util.List<DifferenceReporter> reporters)
-