Java javax.tools Diagnostic fields, constructors, methods, implement or subclass

Example usage for Java javax.tools Diagnostic fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.tools Diagnostic.

The text is from its open source code.

Method

StringgetCode()
Returns a diagnostic code indicating the type of diagnostic.
longgetColumnNumber()
Returns the column number of the character offset returned by #getPosition() .
longgetEndPosition()
Returns the character offset from the beginning of the file associated with this diagnostic that indicates the end of the problem.
KindgetKind()
Returns the kind of this diagnostic, for example, error or warning.
longgetLineNumber()
Returns the line number of the character offset returned by #getPosition() .
StringgetMessage(Locale locale)
Returns a localized message for the given locale.
longgetPosition()
Returns a character offset from the beginning of the source object associated with this diagnostic that indicates the location of the problem.
SgetSource()
Returns the source object associated with this diagnostic.
longgetStartPosition()
Returns the character offset from the beginning of the file associated with this diagnostic that indicates the start of the problem.
StringtoString()
Returns a string representation of the object.