Class DiagnosticCollector<S>
- java.lang.Object
-
- javax.tools.DiagnosticCollector<S>
- Type Parameters:
-
S- the type of source objects used by diagnostics received by this object
- All Implemented Interfaces:
DiagnosticListener<S>
public final class DiagnosticCollector<S> extends Object implements DiagnosticListener<S>
Provides an easy way to collect diagnostics in a list.
- Since:
- 1.6
Constructors
| Constructor | Description |
|---|---|
DiagnosticCollector() |
Methods
| Modifier and Type | Method | Description |
|---|---|---|
List<Diagnostic<? extends S>> | getDiagnostics() | Returns a list view of diagnostics collected by this object. |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait Methods declared in interface javax.tools.DiagnosticListener
report Constructors
DiagnosticCollector
public DiagnosticCollector()
Methods
getDiagnostics
public List<Diagnostic<? extends S>> getDiagnostics()
Returns a list view of diagnostics collected by this object.
- Returns:
- a list view of diagnostics
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/java.compiler/javax/tools/DiagnosticCollector.html