Package org.teiid.client.plan
Class PlanNode.Property
- java.lang.Object
-
- org.teiid.client.plan.PlanNode.Property
-
- All Implemented Interfaces:
Externalizable,Serializable
- Enclosing class:
- PlanNode
public static class PlanNode.Property extends Object implements Externalizable
A Property is a named value of aPlanNodethat may be anotherPlanNodeor a non-null list of values.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()PlanNodegetPlanNode()List<String>getValues()voidreadExternal(ObjectInput in)voidsetPlanNode(PlanNode planNode)voidsetValues(List<String> values)voidwriteExternal(ObjectOutput out)
-
-
-
Constructor Detail
-
Property
public Property()
-
Property
public Property(String name)
-
-
Method Detail
-
getName
public String getName()
-
getPlanNode
public PlanNode getPlanNode()
-
setPlanNode
public void setPlanNode(PlanNode planNode)
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Specified by:
readExternalin interfaceExternalizable- Throws:
IOExceptionClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternalin interfaceExternalizable- Throws:
IOException
-
-