public static final enum

Service.GDataRequest.RequestType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.google.gdata.client.Service.GDataRequest.RequestType

Class Overview

The RequestType enumeration defines the set of expected GData request types. These correspond to the four operations of the GData protocol:

  • QUERY - query a feed, entry, or description document.
  • INSERT - insert a new entry into a feed.
  • UPDATE - update an existing entry within a feed.
  • PATCH - patch an existing entry within a feed.
  • DELETE - delete an existing entry within a feed.
  • BATCH - execute several insert/update/delete operations

Summary

Enum Values
Service.GDataRequest.RequestType  BATCH   
Service.GDataRequest.RequestType  DELETE   
Service.GDataRequest.RequestType  INSERT   
Service.GDataRequest.RequestType  PATCH   
Service.GDataRequest.RequestType  QUERY   
Service.GDataRequest.RequestType  UPDATE   
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static Service.GDataRequest.RequestType valueOf(String name)
final static RequestType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Service.GDataRequest.RequestType BATCH

public static final Service.GDataRequest.RequestType DELETE

public static final Service.GDataRequest.RequestType INSERT

public static final Service.GDataRequest.RequestType PATCH

public static final Service.GDataRequest.RequestType QUERY

public static final Service.GDataRequest.RequestType UPDATE

Public Methods

public static Service.GDataRequest.RequestType valueOf (String name)

Parameters
name

public static final RequestType[] values ()