Package org.teiid.client.plan
Class Annotation
- java.lang.Object
-
- org.teiid.client.plan.Annotation
-
- All Implemented Interfaces:
Externalizable
,Serializable
public class Annotation extends Object implements Externalizable
Annotation describing a decision made during query execution.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Annotation.Priority
-
Field Summary
Fields Modifier and Type Field Description static String
CACHED_PROCEDURE
static String
HINTS
static String
MATERIALIZED_VIEW
static String
RELATIONAL_PLANNER
-
Constructor Summary
Constructors Constructor Description Annotation()
Annotation(String category, String annotation, String resolution, Annotation.Priority priority)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAnnotation()
String
getCategory()
Annotation.Priority
getPriority()
String
getResolution()
void
readExternal(ObjectInput in)
String
toString()
void
writeExternal(ObjectOutput out)
-
-
-
Field Detail
-
MATERIALIZED_VIEW
public static final String MATERIALIZED_VIEW
- See Also:
- Constant Field Values
-
CACHED_PROCEDURE
public static final String CACHED_PROCEDURE
- See Also:
- Constant Field Values
-
HINTS
public static final String HINTS
- See Also:
- Constant Field Values
-
RELATIONAL_PLANNER
public static final String RELATIONAL_PLANNER
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Annotation
public Annotation()
-
Annotation
public Annotation(String category, String annotation, String resolution, Annotation.Priority priority)
-
-
Method Detail
-
getCategory
public String getCategory()
-
getAnnotation
public String getAnnotation()
-
getResolution
public String getResolution()
-
getPriority
public Annotation.Priority getPriority()
-
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
-
-