Package microsoft.dynamics.crm.complex
Class EntityQueryExpression
- java.lang.Object
-
- microsoft.dynamics.crm.complex.EntityQueryExpression
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class EntityQueryExpression extends Object implements com.github.davidmoten.odata.client.ODataType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classEntityQueryExpression.Builder
-
Field Summary
Fields Modifier and Type Field Description protected AttributeQueryExpressionattributeQueryprotected com.github.davidmoten.odata.client.ContextPathcontextPathprotected MetadataFilterExpressioncriteriaprotected EntityKeyQueryExpressionkeyQueryprotected LabelQueryExpressionlabelQueryprotected StringodataTypeprotected MetadataPropertiesExpressionpropertiesprotected RelationshipQueryExpressionrelationshipQueryprotected com.github.davidmoten.odata.client.internal.UnmappedFieldsImplunmappedFields
-
Constructor Summary
Constructors Modifier Constructor Description protectedEntityQueryExpression()
-
Method Summary
-
-
-
Field Detail
-
contextPath
protected com.github.davidmoten.odata.client.ContextPath contextPath
-
unmappedFields
protected com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl unmappedFields
-
odataType
protected String odataType
-
labelQuery
protected LabelQueryExpression labelQuery
-
attributeQuery
protected AttributeQueryExpression attributeQuery
-
relationshipQuery
protected RelationshipQueryExpression relationshipQuery
-
keyQuery
protected EntityKeyQueryExpression keyQuery
-
criteria
protected MetadataFilterExpression criteria
-
properties
protected MetadataPropertiesExpression properties
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType
-
getLabelQuery
public Optional<LabelQueryExpression> getLabelQuery()
-
withLabelQuery
public EntityQueryExpression withLabelQuery(LabelQueryExpression labelQuery)
-
getAttributeQuery
public Optional<AttributeQueryExpression> getAttributeQuery()
-
withAttributeQuery
public EntityQueryExpression withAttributeQuery(AttributeQueryExpression attributeQuery)
-
getRelationshipQuery
public Optional<RelationshipQueryExpression> getRelationshipQuery()
-
withRelationshipQuery
public EntityQueryExpression withRelationshipQuery(RelationshipQueryExpression relationshipQuery)
-
getKeyQuery
public Optional<EntityKeyQueryExpression> getKeyQuery()
-
withKeyQuery
public EntityQueryExpression withKeyQuery(EntityKeyQueryExpression keyQuery)
-
getCriteria
public Optional<MetadataFilterExpression> getCriteria()
-
withCriteria
public EntityQueryExpression withCriteria(MetadataFilterExpression criteria)
-
getProperties
public Optional<MetadataPropertiesExpression> getProperties()
-
withProperties
public EntityQueryExpression withProperties(MetadataPropertiesExpression properties)
-
withUnmappedField
public EntityQueryExpression withUnmappedField(String name, String value)
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType
-
builder
public static EntityQueryExpression.Builder builder()
Returns a builder which is used to create a new instance of this class (given that this class is immutable).- Returns:
- a new Builder for this class
-
-