Back to project page android-google-spreadsheets-api.
The source code is released under:
Apache License
If you think the Android project android-google-spreadsheets-api listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.spreadsheets.android.api.model; //w w w . j a v a 2s . c o m import com.google.api.client.util.Key; public class BatchOperation { public static final BatchOperation INSERT = BatchOperation.of("insert"); public static final BatchOperation QUERY = BatchOperation.of("query"); public static final BatchOperation UPDATE = BatchOperation.of("update"); public static final BatchOperation DELETE = BatchOperation.of("delete"); @Key("@type") public String type; public BatchOperation() { } public static BatchOperation of(String type) { BatchOperation result = new BatchOperation(); result.type = type; return result; } }