Uses of Class
cdc.issues.Issue
-
Packages that use Issue Package Description cdc.issues cdc.issues.io cdc.issues.rules -
-
Uses of Issue in cdc.issues
Classes in cdc.issues with type parameters of type Issue Modifier and Type Class Description classDiagnosis<I extends Issue>A Diagnosis is a list of issues.interfaceHasDiagnosis<I extends Issue>classIssuesCollector<I extends Issue>A collector of issues that can delegate issues.interfaceIssuesHandler<I extends Issue>Interface implemented by classes that can handle (collect, process, ...) issues.classIssuesTee<I extends Issue>classVerboseIssuesHandler<I extends Issue>Fields in cdc.issues with type parameters of type Issue Modifier and Type Field Description static Comparator<Issue>Issue. TIMESTAMP_COMPARATORComparator of Issues sing timestamp.static IssuesHandler<Issue>IssuesHandler. VOIDMethods in cdc.issues with type parameters of type Issue Modifier and Type Method Description static <I extends Issue>
Diagnosis<I>Diagnosis. create(I... issues)static <I extends Issue>
Diagnosis<I>Diagnosis. create(Collection<I> issues)static <I extends Issue>
Diagnosis<I>Diagnosis. okDiagnosis()Methods in cdc.issues that return Issue Modifier and Type Method Description IssueIssue.Builder. build()Methods in cdc.issues with parameters of type Issue Modifier and Type Method Description static <I extends Issue>
Diagnosis<I>Diagnosis. create(I... issues)voidVoidIssuesHandler. issue(Issue issue)default voidIssuesHandler. issues(I... issues)voidVoidIssuesHandler. issues(Issue... issues)Method parameters in cdc.issues with type arguments of type Issue Modifier and Type Method Description voidVoidIssuesHandler. issues(Iterable<? extends Issue> issues)Constructors in cdc.issues with parameters of type Issue Constructor Description Diagnosis(I... issues) -
Uses of Issue in cdc.issues.io
Methods in cdc.issues.io that return types with arguments of type Issue Modifier and Type Method Description List<Issue>IssuesReader. load(File file)static List<Issue>IssuesReader. load(File file, IssuesFactoryFeatures features)Method parameters in cdc.issues.io with type arguments of type Issue Modifier and Type Method Description voidIssuesWriter. save(List<? extends Issue> issues, File file, cdc.util.events.ProgressController controller)Saves a list of issues to a file.static voidIssuesWriter. save(List<? extends Issue> issues, File file, cdc.util.events.ProgressController controller, IssuesFactoryFeatures features)Saves a list of issues to a file. -
Uses of Issue in cdc.issues.rules
Method parameters in cdc.issues.rules with type arguments of type Issue Modifier and Type Method Description default voidIssuesDetector. analyze(T data, Location location, IssuesHandler<Issue> issuesHandler)Analyzes one data.voidIssuesDetector. analyze(T data, List<Location> locations, IssuesHandler<Issue> issuesHandler)Analyzes one data.static <T> voidRulesCatalog. apply(IssuesDetector<T> detector, Spliterator<LocatedData<T>> spliterator, IssuesHandler<Issue> issuesHandler, cdc.util.events.ProgressController controller)Applies an IssuesDetector to data provided by a Spliterator.default <T> voidRulesCatalog. apply(String project, String snapshot, Rule rule, Class<T> dataClass, Spliterator<LocatedData<T>> spliterator, IssuesHandler<Issue> issuesHandler, cdc.util.events.ProgressController controller)Creates and configures an appropriate IssuesDetector, and applies it to data provided by a Spliterator.default <T> voidRulesCatalog. apply(String project, String snapshot, Class<T> dataClass, Spliterator<LocatedData<T>> spliterator, IssuesHandler<Issue> issuesHandler, cdc.util.events.ProgressController controller)Create all possible IssueDectectors for a data class, configures them with all supported rules, and apply them to data provided by a Spliterator.
-