Package hydra.ext.csharp.syntax
Class QueryExpression
- java.lang.Object
-
- hydra.ext.csharp.syntax.QueryExpression
-
- All Implemented Interfaces:
java.io.Serializable
public class QueryExpression extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description QueryBody
body
static Name
FIELD_NAME_BODY
static Name
FIELD_NAME_FROM
FromClause
from
static Name
TYPE_NAME
-
Constructor Summary
Constructors Constructor Description QueryExpression(FromClause from, QueryBody body)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
int
hashCode()
QueryExpression
withBody(QueryBody body)
QueryExpression
withFrom(FromClause from)
-
-
-
Field Detail
-
TYPE_NAME
public static final Name TYPE_NAME
-
FIELD_NAME_FROM
public static final Name FIELD_NAME_FROM
-
FIELD_NAME_BODY
public static final Name FIELD_NAME_BODY
-
from
public final FromClause from
-
body
public final QueryBody body
-
-
Constructor Detail
-
QueryExpression
public QueryExpression(FromClause from, QueryBody body)
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
withFrom
public QueryExpression withFrom(FromClause from)
-
withBody
public QueryExpression withBody(QueryBody body)
-
-