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 aPlanNode
that may be anotherPlanNode
or a non-null list of values.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getName()
PlanNode
getPlanNode()
List<String>
getValues()
void
readExternal(ObjectInput in)
void
setPlanNode(PlanNode planNode)
void
setValues(List<String> values)
void
writeExternal(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:
readExternal
in interfaceExternalizable
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Specified by:
writeExternal
in interfaceExternalizable
- Throws:
IOException
-
-