BaseDataObject

Inheritance: java.lang.Object

public abstract class BaseDataObject

Base class for google data objects.

Constructors

ConstructorDescription
BaseDataObject(String kind)Initializes a new instance of the class.
BaseDataObject(String kind, String id)Initializes a new instance of the class.
BaseDataObject(String kind, String id, String eTag)Initializes a new instance of the class.

Methods

MethodDescription
equals(Object arg0)
getClass()
getETag()An ETag or entity tag is one of several mechanisms that HTTP provides for web cache validation, and which allows a client to make conditional requests.
getId()Identifier of the resource.
getKind()Type of the resource
hashCode()
notify()
notifyAll()
setETag(String value)An ETag or entity tag is one of several mechanisms that HTTP provides for web cache validation, and which allows a client to make conditional requests.
setId(String value)Identifier of the resource.
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

BaseDataObject(String kind)

public BaseDataObject(String kind)

Initializes a new instance of the class.

Parameters:

ParameterTypeDescription
kindjava.lang.StringType of the resource

BaseDataObject(String kind, String id)

public BaseDataObject(String kind, String id)

Initializes a new instance of the class.

Parameters:

ParameterTypeDescription
kindjava.lang.StringType of the resource
idjava.lang.StringIdentifier of the resource.

BaseDataObject(String kind, String id, String eTag)

public BaseDataObject(String kind, String id, String eTag)

Initializes a new instance of the class.

Parameters:

ParameterTypeDescription
kindjava.lang.StringType of the resource
idjava.lang.StringIdentifier of the resource.
eTagjava.lang.StringAn entity tag

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getETag()

public String getETag()

An ETag or entity tag is one of several mechanisms that HTTP provides for web cache validation, and which allows a client to make conditional requests. This allows caches to be more efficient, and saves bandwidth, as a web server does not need to send a full response if the content has not changed. ETags can also be used for optimistic concurrency control, as a way to help prevent simultaneous updates of a resource from overwriting each other.

Returns: java.lang.String

getId()

public String getId()

Identifier of the resource.

Returns: java.lang.String

getKind()

public String getKind()

Type of the resource

Returns: java.lang.String

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

setETag(String value)

public void setETag(String value)

An ETag or entity tag is one of several mechanisms that HTTP provides for web cache validation, and which allows a client to make conditional requests. This allows caches to be more efficient, and saves bandwidth, as a web server does not need to send a full response if the content has not changed. ETags can also be used for optimistic concurrency control, as a way to help prevent simultaneous updates of a resource from overwriting each other.

Parameters:

ParameterTypeDescription
valuejava.lang.String

setId(String value)

public void setId(String value)

Identifier of the resource.

Parameters:

ParameterTypeDescription
valuejava.lang.String

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int