Package microsoft.dynamics.crm.complex
Class QueryByAttribute
- java.lang.Object
-
- microsoft.dynamics.crm.complex.QueryBase
-
- microsoft.dynamics.crm.complex.QueryByAttribute
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.ODataType
public class QueryByAttribute extends QueryBase implements com.github.davidmoten.odata.client.ODataType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classQueryByAttribute.Builder
-
Field Summary
Fields Modifier and Type Field Description protected List<String>attributesprotected StringattributesNextLinkprotected ColumnSetcolumnSetprotected StringentityNameprotected List<OrderExpression>ordersprotected StringordersNextLinkprotected PagingInfopageInfoprotected IntegertopCountprotected List<Object>valuesprotected StringvaluesNextLink-
Fields inherited from class microsoft.dynamics.crm.complex.QueryBase
contextPath, odataType, unmappedFields
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedQueryByAttribute()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static QueryByAttribute.BuilderbuilderQueryByAttribute()Returns a builder which is used to create a new instance of this class (given that this class is immutable).com.github.davidmoten.odata.client.CollectionPage<String>getAttributes()com.github.davidmoten.odata.client.CollectionPage<String>getAttributes(com.github.davidmoten.odata.client.HttpRequestOptions options)Optional<ColumnSet>getColumnSet()Optional<String>getEntityName()com.github.davidmoten.odata.client.CollectionPage<OrderExpression>getOrders()com.github.davidmoten.odata.client.CollectionPage<OrderExpression>getOrders(com.github.davidmoten.odata.client.HttpRequestOptions options)Optional<PagingInfo>getPageInfo()Optional<Integer>getTopCount()com.github.davidmoten.odata.client.UnmappedFieldsgetUnmappedFields()com.github.davidmoten.odata.client.CollectionPage<Object>getValues()com.github.davidmoten.odata.client.CollectionPage<Object>getValues(com.github.davidmoten.odata.client.HttpRequestOptions options)StringodataTypeName()voidpostInject(boolean addKeysToContextPath)StringtoString()QueryByAttributewithColumnSet(ColumnSet columnSet)QueryByAttributewithEntityName(String entityName)QueryByAttributewithPageInfo(PagingInfo pageInfo)QueryByAttributewithTopCount(Integer topCount)QueryByAttributewithUnmappedField(String name, Object value)
-
-
-
Field Detail
-
entityName
protected String entityName
-
attributesNextLink
protected String attributesNextLink
-
valuesNextLink
protected String valuesNextLink
-
pageInfo
protected PagingInfo pageInfo
-
columnSet
protected ColumnSet columnSet
-
orders
protected List<OrderExpression> orders
-
ordersNextLink
protected String ordersNextLink
-
topCount
protected Integer topCount
-
-
Method Detail
-
odataTypeName
public String odataTypeName()
- Specified by:
odataTypeNamein interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
odataTypeNamein classQueryBase
-
withEntityName
public QueryByAttribute withEntityName(String entityName)
-
getAttributes
public com.github.davidmoten.odata.client.CollectionPage<String> getAttributes()
-
getAttributes
public com.github.davidmoten.odata.client.CollectionPage<String> getAttributes(com.github.davidmoten.odata.client.HttpRequestOptions options)
-
getValues
public com.github.davidmoten.odata.client.CollectionPage<Object> getValues()
-
getValues
public com.github.davidmoten.odata.client.CollectionPage<Object> getValues(com.github.davidmoten.odata.client.HttpRequestOptions options)
-
getPageInfo
public Optional<PagingInfo> getPageInfo()
-
withPageInfo
public QueryByAttribute withPageInfo(PagingInfo pageInfo)
-
withColumnSet
public QueryByAttribute withColumnSet(ColumnSet columnSet)
-
getOrders
public com.github.davidmoten.odata.client.CollectionPage<OrderExpression> getOrders()
-
getOrders
public com.github.davidmoten.odata.client.CollectionPage<OrderExpression> getOrders(com.github.davidmoten.odata.client.HttpRequestOptions options)
-
withTopCount
public QueryByAttribute withTopCount(Integer topCount)
-
withUnmappedField
public QueryByAttribute withUnmappedField(String name, Object value)
- Overrides:
withUnmappedFieldin classQueryBase
-
getUnmappedFields
public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
- Specified by:
getUnmappedFieldsin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
getUnmappedFieldsin classQueryBase
-
postInject
public void postInject(boolean addKeysToContextPath)
- Specified by:
postInjectin interfacecom.github.davidmoten.odata.client.ODataType- Overrides:
postInjectin classQueryBase
-
builderQueryByAttribute
public static QueryByAttribute.Builder builderQueryByAttribute()
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
-
-