Class QueryReportDataObject.SubQuery
- java.lang.Object
-
- com.inductiveautomation.reporting.common.data.QueryReportDataObject.SubQuery
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- QueryReportDataObject
public static class QueryReportDataObject.SubQuery extends java.lang.Object implements java.io.Serializable
Represents a single query in a tree of nested queries. Note that even the top-level query in a query data source is represented by this "SubQuery" object.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SubQuery()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.util.List<QueryReportDataObject.SubQuery>
getChildren()
java.lang.String
getDataKey()
QueryConfig
getQueryConfig()
boolean
hasChildren()
void
setChildren(java.util.List<QueryReportDataObject.SubQuery> children)
void
setDataKey(java.lang.String dataKey)
void
setQueryConfig(QueryConfig queryConfig)
-
-
-
Method Detail
-
getChildren
public java.util.List<QueryReportDataObject.SubQuery> getChildren()
-
setChildren
public void setChildren(java.util.List<QueryReportDataObject.SubQuery> children)
-
getDataKey
public java.lang.String getDataKey()
-
setDataKey
public void setDataKey(java.lang.String dataKey)
-
getQueryConfig
public QueryConfig getQueryConfig()
-
setQueryConfig
public void setQueryConfig(QueryConfig queryConfig)
-
hasChildren
public boolean hasChildren()
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-