public class Sheets.Spreadsheets.Values extends Object
Modifier and Type | Class and Description |
---|---|
class |
Sheets.Spreadsheets.Values.Append |
class |
Sheets.Spreadsheets.Values.BatchGet |
class |
Sheets.Spreadsheets.Values.BatchUpdate |
class |
Sheets.Spreadsheets.Values.Get |
class |
Sheets.Spreadsheets.Values.Update |
Constructor and Description |
---|
Sheets.Spreadsheets.Values() |
Modifier and Type | Method and Description |
---|---|
Sheets.Spreadsheets.Values.Append |
append(String spreadsheetId,
String range,
ValueRange content)
Appends values to a spreadsheet.
|
Sheets.Spreadsheets.Values.BatchGet |
batchGet(String spreadsheetId)
Returns one or more ranges of values from a spreadsheet.
|
Sheets.Spreadsheets.Values.BatchUpdate |
batchUpdate(String spreadsheetId,
BatchUpdateValuesRequest content)
Sets values in one or more ranges of a spreadsheet.
|
Sheets.Spreadsheets.Values.Get |
get(String spreadsheetId,
String range)
Returns a range of values from a spreadsheet.
|
Sheets.Spreadsheets.Values.Update |
update(String spreadsheetId,
String range,
ValueRange content)
Sets values in a range of a spreadsheet.
|
public Sheets.Spreadsheets.Values.Append append(String spreadsheetId, String range, ValueRange content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.spreadsheetId
- The ID of the spreadsheet to update.range
- The A1 notation of a range to search for a logical table of data.
Values will be appended after the
last row of the table.content
- the ValueRange
IOException
public Sheets.Spreadsheets.Values.BatchGet batchGet(String spreadsheetId) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.spreadsheetId
- The ID of the spreadsheet to retrieve data from.IOException
public Sheets.Spreadsheets.Values.BatchUpdate batchUpdate(String spreadsheetId, BatchUpdateValuesRequest content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.spreadsheetId
- The ID of the spreadsheet to update.content
- the BatchUpdateValuesRequest
IOException
public Sheets.Spreadsheets.Values.Get get(String spreadsheetId, String range) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.spreadsheetId
- The ID of the spreadsheet to retrieve data from.range
- The A1 notation of the values to retrieve.IOException
public Sheets.Spreadsheets.Values.Update update(String spreadsheetId, String range, ValueRange content) throws IOException
AbstractGoogleClientRequest.execute()
method to invoke the remote operation.spreadsheetId
- The ID of the spreadsheet to update.range
- The A1 notation of the values to update.content
- the ValueRange
IOException