Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Template Source: BaseEntityRequestBuilder.java.tt
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.requests;
import com.microsoft.graph.http.IRequestBuilder;
import com.microsoft.graph.core.ClientException;
import com.microsoft.graph.models.WorkbookChart;
import java.util.Arrays;
import java.util.EnumSet;
import javax.annotation.Nullable;
import javax.annotation.Nonnull;
import com.microsoft.graph.core.IBaseClient;
import com.microsoft.graph.http.BaseRequestBuilder;
import com.microsoft.graph.models.WorkbookChartSetDataParameterSet;
import com.microsoft.graph.models.WorkbookChartSetPositionParameterSet;
import com.microsoft.graph.models.WorkbookChartImageParameterSet;
// **NOTE** This file was generated by a tool and any changes will be overwritten.
/**
* The class for the Workbook Chart Request Builder.
*/
public class WorkbookChartRequestBuilder extends BaseRequestBuilder {
/**
* The request builder for the WorkbookChart
*
* @param requestUrl the request URL
* @param client the service client
* @param requestOptions the options for this request
*/
public WorkbookChartRequestBuilder(@Nonnull final String requestUrl, @Nonnull final IBaseClient> client, @Nullable final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
super(requestUrl, client, requestOptions);
}
/**
* Creates the request
*
* @param requestOptions the options for this request
* @return the WorkbookChartRequest instance
*/
@Nonnull
public WorkbookChartRequest buildRequest(@Nullable final com.microsoft.graph.options.Option... requestOptions) {
return buildRequest(getOptions(requestOptions));
}
/**
* Creates the request with specific requestOptions instead of the existing requestOptions
*
* @param requestOptions the options for this request
* @return the WorkbookChartRequest instance
*/
@Nonnull
public WorkbookChartRequest buildRequest(@Nonnull final java.util.List extends com.microsoft.graph.options.Option> requestOptions) {
return new com.microsoft.graph.requests.WorkbookChartRequest(getRequestUrl(), getClient(), requestOptions);
}
/**
* Gets the request builder for WorkbookChartAxes
*
* @return the WorkbookChartAxesRequestBuilder instance
*/
@Nonnull
public com.microsoft.graph.requests.WorkbookChartAxesRequestBuilder axes() {
return new com.microsoft.graph.requests.WorkbookChartAxesRequestBuilder(getRequestUrlWithAdditionalSegment("axes"), getClient(), null);
}
/**
* Gets the request builder for WorkbookChartDataLabels
*
* @return the WorkbookChartDataLabelsRequestBuilder instance
*/
@Nonnull
public com.microsoft.graph.requests.WorkbookChartDataLabelsRequestBuilder dataLabels() {
return new com.microsoft.graph.requests.WorkbookChartDataLabelsRequestBuilder(getRequestUrlWithAdditionalSegment("dataLabels"), getClient(), null);
}
/**
* Gets the request builder for WorkbookChartAreaFormat
*
* @return the WorkbookChartAreaFormatRequestBuilder instance
*/
@Nonnull
public com.microsoft.graph.requests.WorkbookChartAreaFormatRequestBuilder format() {
return new com.microsoft.graph.requests.WorkbookChartAreaFormatRequestBuilder(getRequestUrlWithAdditionalSegment("format"), getClient(), null);
}
/**
* Gets the request builder for WorkbookChartLegend
*
* @return the WorkbookChartLegendRequestBuilder instance
*/
@Nonnull
public com.microsoft.graph.requests.WorkbookChartLegendRequestBuilder legend() {
return new com.microsoft.graph.requests.WorkbookChartLegendRequestBuilder(getRequestUrlWithAdditionalSegment("legend"), getClient(), null);
}
/**
* Gets a request builder for the WorkbookChartSeries collection
*
* @return the collection request builder
*/
@Nonnull
public com.microsoft.graph.requests.WorkbookChartSeriesCollectionRequestBuilder series() {
return new com.microsoft.graph.requests.WorkbookChartSeriesCollectionRequestBuilder(getRequestUrlWithAdditionalSegment("series"), getClient(), null);
}
/**
* Gets a request builder for the WorkbookChartSeries item
*
* @return the request builder
* @param id the item identifier
*/
@Nonnull
public com.microsoft.graph.requests.WorkbookChartSeriesRequestBuilder series(@Nonnull final String id) {
return new com.microsoft.graph.requests.WorkbookChartSeriesRequestBuilder(getRequestUrlWithAdditionalSegment("series") + "/" + id, getClient(), null);
}
/**
* Gets the request builder for WorkbookChartTitle
*
* @return the WorkbookChartTitleRequestBuilder instance
*/
@Nonnull
public com.microsoft.graph.requests.WorkbookChartTitleRequestBuilder title() {
return new com.microsoft.graph.requests.WorkbookChartTitleRequestBuilder(getRequestUrlWithAdditionalSegment("title"), getClient(), null);
}
/**
* Gets the request builder for WorkbookWorksheet
*
* @return the WorkbookWorksheetRequestBuilder instance
*/
@Nonnull
public com.microsoft.graph.requests.WorkbookWorksheetRequestBuilder worksheet() {
return new com.microsoft.graph.requests.WorkbookWorksheetRequestBuilder(getRequestUrlWithAdditionalSegment("worksheet"), getClient(), null);
}
/**
* Gets a builder to execute the method
* @return the request builder
* @param parameters the parameters for the service method
*/
@Nonnull
public WorkbookChartSetDataRequestBuilder setData(@Nonnull final WorkbookChartSetDataParameterSet parameters) {
return new WorkbookChartSetDataRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.setData"), getClient(), null, parameters);
}
/**
* Gets a builder to execute the method
* @return the request builder
* @param parameters the parameters for the service method
*/
@Nonnull
public WorkbookChartSetPositionRequestBuilder setPosition(@Nonnull final WorkbookChartSetPositionParameterSet parameters) {
return new WorkbookChartSetPositionRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.setPosition"), getClient(), null, parameters);
}
/**
* Gets a builder to execute the method
* @return the request builder
*/
@Nonnull
public WorkbookChartImageRequestBuilder image() {
return new WorkbookChartImageRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.image"), getClient(), null);
}
/**
* Gets a builder to execute the method
* @return the request builder
* @param parameters the parameters for the service method
*/
@Nonnull
public WorkbookChartImageRequestBuilder image(@Nonnull final WorkbookChartImageParameterSet parameters) {
return new WorkbookChartImageRequestBuilder(getRequestUrlWithAdditionalSegment("microsoft.graph.image"), getClient(), null, parameters);
}
}