Package org.teiid.query.sql.symbol
Class XMLAttributes
- java.lang.Object
-
- org.teiid.query.sql.symbol.XMLAttributes
-
- All Implemented Interfaces:
Cloneable
,LanguageObject
public class XMLAttributes extends Object implements LanguageObject
Represents XMLATTRIBUTES name value pairs
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.teiid.query.sql.LanguageObject
LanguageObject.Util
-
-
Constructor Summary
Constructors Constructor Description XMLAttributes(List<DerivedColumn> args)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
acceptVisitor(LanguageVisitor visitor)
Method for accepting a visitor.XMLAttributes
clone()
Implement clone to make objects cloneable.boolean
equals(Object obj)
List<DerivedColumn>
getArgs()
int
hashCode()
String
toString()
-
-
-
Constructor Detail
-
XMLAttributes
public XMLAttributes(List<DerivedColumn> args)
-
-
Method Detail
-
getArgs
public List<DerivedColumn> getArgs()
-
clone
public XMLAttributes 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
-
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
-
-