Package org.teiid.query.sql.symbol
Class XMLParse
- java.lang.Object
-
- org.teiid.query.sql.symbol.XMLParse
-
- All Implemented Interfaces:
Cloneable
,LanguageObject
,Expression
public class XMLParse extends Object implements Expression
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.teiid.query.sql.LanguageObject
LanguageObject.Util
-
-
Constructor Summary
Constructors Constructor Description XMLParse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
acceptVisitor(LanguageVisitor visitor)
Method for accepting a visitor.XMLParse
clone()
Implement clone to make objects cloneable.boolean
equals(Object obj)
Expression
getExpression()
Class<?>
getType()
Get the return type of this expression.int
hashCode()
boolean
isDocument()
boolean
isWellFormed()
void
setDocument(boolean document)
void
setExpression(Expression expression)
void
setWellFormed(boolean wellFormed)
String
toString()
-
-
-
Method Detail
-
getType
public Class<?> getType()
Description copied from interface:Expression
Get the return type of this expression.- Specified by:
getType
in interfaceExpression
- Returns:
- Java class may be null prior to being resolved
-
getExpression
public Expression getExpression()
-
isDocument
public boolean isDocument()
-
setDocument
public void setDocument(boolean document)
-
setExpression
public void setExpression(Expression expression)
-
isWellFormed
public boolean isWellFormed()
-
setWellFormed
public void setWellFormed(boolean wellFormed)
-
acceptVisitor
public void acceptVisitor(LanguageVisitor visitor)
Description copied from interface:LanguageObject
Method for accepting a visitor. It is the responsibility of the language object to call back on the visitor.- Specified by:
acceptVisitor
in interfaceLanguageObject
- Parameters:
visitor
- Visitor being used
-
clone
public XMLParse clone()
Description copied from interface:LanguageObject
Implement clone to make objects cloneable.- Specified by:
clone
in interfaceLanguageObject
- Overrides:
clone
in classObject
- Returns:
- Deep clone of this object
-
-