Package org.teiid.api.exception.query
Class UnresolvedSymbolDescription
- java.lang.Object
-
- org.teiid.api.exception.query.UnresolvedSymbolDescription
-
- All Implemented Interfaces:
Serializable
public class UnresolvedSymbolDescription extends Object implements Serializable
This helper object describes an unresolved symbol found during query resolution.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnresolvedSymbolDescription(String symbol, String description)
Construct a description given the symbol and it's description.UnresolvedSymbolDescription(ElementSymbol symbol, String description)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Get the description of the problemLanguageObject
getObject()
String
getSymbol()
Get the symbol that was unresolvedString
toString()
Get string representation of the unresolved symbol description
-
-
-
Constructor Detail
-
UnresolvedSymbolDescription
public UnresolvedSymbolDescription(String symbol, String description)
Construct a description given the symbol and it's description.- Parameters:
symbol
- Unresolved symboldescription
- Description of error
-
UnresolvedSymbolDescription
public UnresolvedSymbolDescription(ElementSymbol symbol, String description)
-
-
Method Detail
-
getObject
public LanguageObject getObject()
-
getSymbol
public String getSymbol()
Get the symbol that was unresolved- Returns:
- Unresolved symbol
-
getDescription
public String getDescription()
Get the description of the problem- Returns:
- Problem description
-
-