Interface SettingsProblem
- All Known Implementing Classes:
- DefaultSettingsProblem
Deprecated.
Describes a problem that was encountered during settings building. A problem can either be an exception that was
 thrown or a simple string message. In addition, a problem carries a hint about its source, e.g. the settings file
 that exhibits the problem.
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic enumDeprecated.The different severity levels for a problem, in decreasing order.
- 
Method SummaryModifier and TypeMethodDescriptionintDeprecated.Gets the one-based index of the column containing the problem.Deprecated.Gets the exception that caused this problem (if any).intDeprecated.Gets the one-based index of the line containing the problem.Deprecated.Gets the location of the problem.Deprecated.Gets the message that describes this problem.Deprecated.Gets the severity level of this problem.Deprecated.Gets the hint about the source of the problem.
- 
Method Details- 
getSourceString getSource()Deprecated.Gets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the creator of the problem, the general expectation is that the hint provides sufficient information to the user to track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from which the settings were read.- Returns:
- The hint about the source of the problem or an empty string if unknown, never null.
 
- 
getLineNumberint getLineNumber()Deprecated.Gets the one-based index of the line containing the problem. The line number should refer to some text file that is given bygetSource().- Returns:
- The one-based index of the line containing the problem or a non-positive value if unknown.
 
- 
getColumnNumberint getColumnNumber()Deprecated.Gets the one-based index of the column containing the problem. The column number should refer to some text file that is given bygetSource().- Returns:
- The one-based index of the column containing the problem or non-positive value if unknown.
 
- 
getLocationString getLocation()Deprecated.Gets the location of the problem. The location is a user-friendly combination of the values fromgetSource(),getLineNumber()andgetColumnNumber(). The exact syntax of the returned value is undefined.- Returns:
- The location of the problem, never null.
 
- 
getExceptionException getException()Deprecated.Gets the exception that caused this problem (if any).- Returns:
- The exception that caused this problem or nullif not applicable.
 
- 
getMessageString getMessage()Deprecated.Gets the message that describes this problem.- Returns:
- The message describing this problem, never null.
 
- 
getSeveritySettingsProblem.Severity getSeverity()Deprecated.Gets the severity level of this problem.- Returns:
- The severity level of this problem, never null.
 
 
- 
SettingsBuilderinstead