Interface Problem
-
@Beta public interface ProblemRepresents a compiler problem or warning.- Noimplement:
- This interface is not intended to be implemented by clients.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classProblem.SeverityThe severity of a problem
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetId()java.lang.StringgetMessage()Problem.SeveritygetSeverity()
-
-
-
Method Detail
-
getId
java.lang.String getId()
- Returns:
- the problem kind identifier.
-
getMessage
java.lang.String getMessage()
- Returns:
- the user message of the problem
-
getSeverity
Problem.Severity getSeverity()
- Returns:
- the problem's severity
-
-