All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.sheets.v4.model.SheetProperties Maven / Gradle / Ivy

There is a newer version: v4-rev20240826-2.0.0
Show newest version
/*
 * Copyright 2010 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */
/*
 * This code was generated by https://github.com/google/apis-client-generator/
 * (build: 2016-10-17 16:43:55 UTC)
 * on 2016-11-07 at 22:12:47 UTC 
 * Modify at your own risk.
 */

package com.google.api.services.sheets.v4.model;

/**
 * Properties of a sheet.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Google Sheets API. For a detailed explanation see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class SheetProperties extends com.google.api.client.json.GenericJson { /** * Additional properties of the sheet if this sheet is a grid. (If the sheet is an object sheet, * containing a chart or image, then this field will be absent.) When writing it is an error to * set any grid properties on non-grid sheets. * The value may be {@code null}. */ @com.google.api.client.util.Key private GridProperties gridProperties; /** * True if the sheet is hidden in the UI, false if it's visible. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean hidden; /** * The index of the sheet within the spreadsheet. When adding or updating sheet properties, if * this field is excluded then the sheet will be added or moved to the end of the sheet list. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer index; /** * True if the sheet is an RTL sheet instead of an LTR sheet. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Boolean rightToLeft; /** * The ID of the sheet. Must be non-negative. This field cannot be changed once set. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.Integer sheetId; /** * The type of sheet. Defaults to GRID. This field cannot be changed once set. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String sheetType; /** * The color of the tab in the UI. * The value may be {@code null}. */ @com.google.api.client.util.Key private Color tabColor; /** * The name of the sheet. * The value may be {@code null}. */ @com.google.api.client.util.Key private java.lang.String title; /** * Additional properties of the sheet if this sheet is a grid. (If the sheet is an object sheet, * containing a chart or image, then this field will be absent.) When writing it is an error to * set any grid properties on non-grid sheets. * @return value or {@code null} for none */ public GridProperties getGridProperties() { return gridProperties; } /** * Additional properties of the sheet if this sheet is a grid. (If the sheet is an object sheet, * containing a chart or image, then this field will be absent.) When writing it is an error to * set any grid properties on non-grid sheets. * @param gridProperties gridProperties or {@code null} for none */ public SheetProperties setGridProperties(GridProperties gridProperties) { this.gridProperties = gridProperties; return this; } /** * True if the sheet is hidden in the UI, false if it's visible. * @return value or {@code null} for none */ public java.lang.Boolean getHidden() { return hidden; } /** * True if the sheet is hidden in the UI, false if it's visible. * @param hidden hidden or {@code null} for none */ public SheetProperties setHidden(java.lang.Boolean hidden) { this.hidden = hidden; return this; } /** * The index of the sheet within the spreadsheet. When adding or updating sheet properties, if * this field is excluded then the sheet will be added or moved to the end of the sheet list. * @return value or {@code null} for none */ public java.lang.Integer getIndex() { return index; } /** * The index of the sheet within the spreadsheet. When adding or updating sheet properties, if * this field is excluded then the sheet will be added or moved to the end of the sheet list. * @param index index or {@code null} for none */ public SheetProperties setIndex(java.lang.Integer index) { this.index = index; return this; } /** * True if the sheet is an RTL sheet instead of an LTR sheet. * @return value or {@code null} for none */ public java.lang.Boolean getRightToLeft() { return rightToLeft; } /** * True if the sheet is an RTL sheet instead of an LTR sheet. * @param rightToLeft rightToLeft or {@code null} for none */ public SheetProperties setRightToLeft(java.lang.Boolean rightToLeft) { this.rightToLeft = rightToLeft; return this; } /** * The ID of the sheet. Must be non-negative. This field cannot be changed once set. * @return value or {@code null} for none */ public java.lang.Integer getSheetId() { return sheetId; } /** * The ID of the sheet. Must be non-negative. This field cannot be changed once set. * @param sheetId sheetId or {@code null} for none */ public SheetProperties setSheetId(java.lang.Integer sheetId) { this.sheetId = sheetId; return this; } /** * The type of sheet. Defaults to GRID. This field cannot be changed once set. * @return value or {@code null} for none */ public java.lang.String getSheetType() { return sheetType; } /** * The type of sheet. Defaults to GRID. This field cannot be changed once set. * @param sheetType sheetType or {@code null} for none */ public SheetProperties setSheetType(java.lang.String sheetType) { this.sheetType = sheetType; return this; } /** * The color of the tab in the UI. * @return value or {@code null} for none */ public Color getTabColor() { return tabColor; } /** * The color of the tab in the UI. * @param tabColor tabColor or {@code null} for none */ public SheetProperties setTabColor(Color tabColor) { this.tabColor = tabColor; return this; } /** * The name of the sheet. * @return value or {@code null} for none */ public java.lang.String getTitle() { return title; } /** * The name of the sheet. * @param title title or {@code null} for none */ public SheetProperties setTitle(java.lang.String title) { this.title = title; return this; } @Override public SheetProperties set(String fieldName, Object value) { return (SheetProperties) super.set(fieldName, value); } @Override public SheetProperties clone() { return (SheetProperties) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy