Uses of Class
gov.nasa.pds.tools.constants.Constants.ProblemType
-
Packages that use Constants.ProblemType Package Description gov.nasa.pds.tools gov.nasa.pds.tools.constants gov.nasa.pds.tools.dict.parser gov.nasa.pds.tools.dict.type gov.nasa.pds.tools.label -
-
Uses of Constants.ProblemType in gov.nasa.pds.tools
Methods in gov.nasa.pds.tools that return Constants.ProblemType Modifier and Type Method Description Constants.ProblemType
LabelParserException. getType()
Constructors in gov.nasa.pds.tools with parameters of type Constants.ProblemType Constructor Description LabelParserException(Dictionary sourceDictionary, Integer lineNumber, Integer column, String key, Constants.ProblemType type, Object... arguments)
LabelParserException(Label label, Integer lineNumber, Integer column, String key, Constants.ProblemType type, Object... arguments)
Use this constructor for exceptions that are associated with a specific file but not on a given line (e.g.LabelParserException(Statement statement, Integer column, String key, Constants.ProblemType type, Object... arguments)
Use of this constructor is encouraged where possible as it retains the context of the exception.LabelParserException(File sourceFile, Integer lineNumber, Integer column, String key, Constants.ProblemType type, Object... arguments)
Use this constructor for exceptions to be reported about a file that can be traced back to a line and columnLabelParserException(Exception e, Integer lineNumber, Integer column, Constants.ProblemType type)
LabelParserException(String key, Constants.ProblemType type, Object... arguments)
Use this constructor for exceptions not associated to a specific file such as not being able to parse due to missing file or bad URLLabelParserException(URI sourceURI, Integer lineNumber, Integer column, String key, Constants.ProblemType type, Object... arguments)
Use this constructor for exceptions to be reported about a URI that can be traced back to a line and column -
Uses of Constants.ProblemType in gov.nasa.pds.tools.constants
Methods in gov.nasa.pds.tools.constants that return Constants.ProblemType Modifier and Type Method Description static Constants.ProblemType
Constants.ProblemType. valueOf(String name)
Returns the enum constant of this type with the specified name.static Constants.ProblemType[]
Constants.ProblemType. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Constants.ProblemType in gov.nasa.pds.tools.dict.parser
Constructors in gov.nasa.pds.tools.dict.parser with parameters of type Constants.ProblemType Constructor Description UnknownDefinitionException(Dictionary sourceDictionary, Integer lineNumber, Integer column, String key, Constants.ProblemType type, Object... arguments)
-
Uses of Constants.ProblemType in gov.nasa.pds.tools.dict.type
Constructors in gov.nasa.pds.tools.dict.type with parameters of type Constants.ProblemType Constructor Description InvalidLengthException(Statement statement, String key, Constants.ProblemType type, Object... arguments)
-
Uses of Constants.ProblemType in gov.nasa.pds.tools.label
Methods in gov.nasa.pds.tools.label with parameters of type Constants.ProblemType Modifier and Type Method Description void
Label. addProblem(int lineNumber, Integer column, String key, Constants.ProblemType type, Object... arguments)
void
Label. addProblem(int lineNumber, String key, Constants.ProblemType type, Object... arguments)
void
Label. addProblem(Statement statement, Integer column, String key, Constants.ProblemType type, Object... arguments)
void
Label. addProblem(Statement statement, String key, Constants.ProblemType type, Object... arguments)
void
Label. addProblem(File sourceFile, int lineNumber, Integer column, String key, Constants.ProblemType type, Object... arguments)
void
Label. addProblem(URI sourceURI, int lineNumber, Integer column, String key, Constants.ProblemType type, Object... arguments)
-