A B C D E F G H I K L M O P Q R S T U V W

A

addChild(String, String) - Method in class com.google.appengine.api.datastore.KeyFactory.Builder
Add a Key constructed from the provided kind and name as the child of the Key most recently added to the Builder.
addChild(String, long) - Method in class com.google.appengine.api.datastore.KeyFactory.Builder
Add a Key constructed from the provided kind and id as the child of the Key most recently added to the Builder.
addFilter(String, Query.FilterOperator, Object) - Method in class com.google.appengine.api.datastore.Query
Add a filter on the specified property.
addHeader(HTTPHeader) - Method in class com.google.appengine.api.urlfetch.HTTPRequest
Adds header to this request.
addPropertiesToPb(Map<String, Object>, EntityProto) - Static method in class com.google.appengine.api.datastore.DataTypeTranslator
Add all of the properties in the specified map to an EntityProto.
addSort(String) - Method in class com.google.appengine.api.datastore.Query
Specify how the query results should be sorted.
addSort(String, Query.SortDirection) - Method in class com.google.appengine.api.datastore.Query
Specify how the query results should be sorted.
allowTruncate() - Method in class com.google.appengine.api.urlfetch.FetchOptions
Enables response truncation.
allowTruncate() - Static method in class com.google.appengine.api.urlfetch.FetchOptions.Builder
Create a FetchOptions that allows truncation of the response.
applyTransform(Transform, Image) - Method in interface com.google.appengine.api.images.ImagesService
Applies the provided transform to the provided image encoding the transformed image stored using PNG file format.
applyTransform(Transform, Image, ImagesService.OutputEncoding) - Method in interface com.google.appengine.api.images.ImagesService
Applies the provided transform to the provided image encoding the transformed image stored using encoding file format.
asIterable(FetchOptions) - Method in interface com.google.appengine.api.datastore.PreparedQuery
Retrieves the Query Entities as an Iterable using the provided FetchOptions.
asIterable() - Method in interface com.google.appengine.api.datastore.PreparedQuery
Equivalent to asIterable(FetchOptions.Builder.withChunkSize(FetchOptions.DEFAULT_CHUNK_SIZE).
asIterator(FetchOptions) - Method in interface com.google.appengine.api.datastore.PreparedQuery
Retrieves the Query Entities as an Iterator using the provided FetchOptions.
asIterator() - Method in interface com.google.appengine.api.datastore.PreparedQuery
Equivalent to asIterator(FetchOptions.Builder.withChunkSize(FetchOptions.DEFAULT_CHUNK_SIZE).
asList(FetchOptions) - Method in interface com.google.appengine.api.datastore.PreparedQuery
Retrieves the Query Entities as a List using the provided .
asSingleEntity() - Method in interface com.google.appengine.api.datastore.PreparedQuery
Retrieves the one and only result for the Query.

B

beginTransaction() - Method in interface com.google.appengine.api.datastore.DatastoreService
Begins a transaction against the datastore.
Blob - Class in com.google.appengine.api.datastore
Blob contains an array of bytes of unlimited size.
Blob(byte[]) - Constructor for class com.google.appengine.api.datastore.Blob
Construct a new Blob with the specified bytes.
byDeltaMillis(int) - Static method in class com.google.appengine.api.memcache.Expiration
Creates an Expiration for some number of milliseconds into the future.
byDeltaSeconds(int) - Static method in class com.google.appengine.api.memcache.Expiration
Creates an Expiration for some number of seconds in the future.

C

checkSupportedValue(Object) - Static method in class com.google.appengine.api.datastore.DataTypeUtils
If the specified object cannot be used as the value for a Entity property, throw an exception with the appropriate explanation.
checkSupportedValue(String, Object) - Static method in class com.google.appengine.api.datastore.DataTypeUtils
If the specified object cannot be used as the value for a Entity property, throw an exception with the appropriate explanation.
chunkSize(int) - Method in class com.google.appengine.api.datastore.FetchOptions
Sets the chunk size.
clearAll() - Method in interface com.google.appengine.api.memcache.MemcacheService
Empties the cache of all values.
clone() - Method in class com.google.appengine.api.datastore.Entity
Returns a shallow copy of this Entity instance.
com.google.appengine.api.datastore - package com.google.appengine.api.datastore
The datastore provides persistent storage for App Engine applications, used either directly or via the provided JDO or JPA interfaces.
com.google.appengine.api.images - package com.google.appengine.api.images
This package provides facilities for the creation and manipulation of images by Java code.
com.google.appengine.api.mail - package com.google.appengine.api.mail
App Engine applications can send email messages on behalf of the app's administrators, or of authenticated users, using the standard javax.mail interface over this low-level API.
com.google.appengine.api.memcache - package com.google.appengine.api.memcache
The memcache API provides access to fast but unreliable data storage, which may also be accessed via the JCache API.
com.google.appengine.api.urlfetch - package com.google.appengine.api.urlfetch
The URL Fetch service can be used to make HTTP and HTTPS requests of other servers on the internet.
com.google.appengine.api.users - package com.google.appengine.api.users
The UserService provides facilities to check whether a user has authenticated using their Google Account, retrieve their email address, and check whether they are an administrator for this application.
commit() - Method in interface com.google.appengine.api.datastore.Transaction
Commits the transaction.
compareTo(DataTypeTranslator.ComparableByteArray) - Method in class com.google.appengine.api.datastore.DataTypeTranslator.ComparableByteArray
 
compareTo(Key) - Method in class com.google.appengine.api.datastore.Key
Compares two Key objects.
compareTo(Link) - Method in class com.google.appengine.api.datastore.Link
 
compareTo(ShortBlob) - Method in class com.google.appengine.api.datastore.ShortBlob
 
compareTo(User) - Method in class com.google.appengine.api.users.User
 
Composite - Class in com.google.appengine.api.images
A Composite represents a composition of an image onto a canvas.
Composite() - Constructor for class com.google.appengine.api.images.Composite
 
composite(Collection<Composite>, int, int, long) - Method in interface com.google.appengine.api.images.ImagesService
Applies the provided Collection of Composites using a canvas with dimensions determined by width and height and background color color.
composite(Collection<Composite>, int, int, long, ImagesService.OutputEncoding) - Method in interface com.google.appengine.api.images.ImagesService
Applies the provided Collection of Composites using a canvas with dimensions determined by width and height and background color color.
Composite.Anchor - Enum in com.google.appengine.api.images
Valid anchoring positions for a compositing operation.
CompositeTransform - Class in com.google.appengine.api.images
A transform that represents zero or more transforms executed in series.
concatenate(Transform) - Method in class com.google.appengine.api.images.CompositeTransform
Concatenates a transform to the end of this composite transform.
contains(Object) - Method in interface com.google.appengine.api.memcache.MemcacheService
Tests whether a given value is in cache, even if its value is null.
convertToPb(Entity) - Static method in class com.google.appengine.api.datastore.EntityTranslator
 
countEntities() - Method in interface com.google.appengine.api.datastore.PreparedQuery
Retrieves the number of Entities that currently match this Query.
createFromPb(EntityProto) - Static method in class com.google.appengine.api.datastore.EntityTranslator
 
createKey(String, long) - Static method in class com.google.appengine.api.datastore.KeyFactory
Creates a new Key having no parent from its kind and ID.
createKey(Key, String, long) - Static method in class com.google.appengine.api.datastore.KeyFactory
Creates a new Key with the provided parent from its kind and ID.
createKey(String, String) - Static method in class com.google.appengine.api.datastore.KeyFactory
Creates a new Key having no parent from its kind and name.
createKey(Key, String, String) - Static method in class com.google.appengine.api.datastore.KeyFactory
Creates a new Key with the provided parent from its kind and name.
createKeyString(String, long) - Static method in class com.google.appengine.api.datastore.KeyFactory
Shorthand for invoking KeyFactory.keyToString(Key) on the result of KeyFactory.createKey(String, long)
createKeyString(Key, String, long) - Static method in class com.google.appengine.api.datastore.KeyFactory
Shorthand for invoking KeyFactory.keyToString(Key) on the result of KeyFactory.createKey(Key, String, long)
createKeyString(String, String) - Static method in class com.google.appengine.api.datastore.KeyFactory
Shorthand for invoking KeyFactory.keyToString(Key) on the result of KeyFactory.createKey(String, long)
createKeyString(Key, String, String) - Static method in class com.google.appengine.api.datastore.KeyFactory
Shorthand for invoking KeyFactory.keyToString(Key) on the result of KeyFactory.createKey(Key, String, long)
createLoginURL(String) - Method in interface com.google.appengine.api.users.UserService
Returns an URL that can be used to display a login page to the user.
createLogoutURL(String) - Method in interface com.google.appengine.api.users.UserService
Returns an URL that can be used to log the current user out of this app.

D

DatastoreConfig - Interface in com.google.appengine.api.datastore
User-configurable properties of the datastore.
DatastoreFailureException - Exception in com.google.appengine.api.datastore
DatastoreFailureException is thrown when any unknown error occurs while communicating with the data store.
DatastoreFailureException(String) - Constructor for exception com.google.appengine.api.datastore.DatastoreFailureException
 
DatastoreFailureException(String, Throwable) - Constructor for exception com.google.appengine.api.datastore.DatastoreFailureException
 
DatastoreNeedIndexException - Exception in com.google.appengine.api.datastore
DatastoreNeedIndexException is thrown when no matching index was found for a query requiring an index.
DatastoreNeedIndexException(String) - Constructor for exception com.google.appengine.api.datastore.DatastoreNeedIndexException
 
DatastoreService - Interface in com.google.appengine.api.datastore
The DatastoreService provides access to a schema-less data storage system.
DatastoreServiceFactory - Class in com.google.appengine.api.datastore
Creates DatastoreService implementations.
DatastoreServiceFactory() - Constructor for class com.google.appengine.api.datastore.DatastoreServiceFactory
 
DatastoreTimeoutException - Exception in com.google.appengine.api.datastore
DatastoreTimeoutException is thrown when a datastore operation times out.
DatastoreTimeoutException(String) - Constructor for exception com.google.appengine.api.datastore.DatastoreTimeoutException
 
DataTypeTranslator - Class in com.google.appengine.api.datastore
DataTypeTranslator is a utility class for converting between the data store's Property protocol buffers and the the user-facing classes (String, User, etc.).
DataTypeTranslator.ComparableByteArray - Class in com.google.appengine.api.datastore
A wrapper for a byte[] that implements Comparable.
DataTypeTranslator.ComparableByteArray(byte[]) - Constructor for class com.google.appengine.api.datastore.DataTypeTranslator.ComparableByteArray
 
DataTypeUtils - Class in com.google.appengine.api.datastore
DataTypeUtils presents a simpler interface that allows user-code to determine what Classes can safely be stored as properties in the data store.
DEFAULT - Static variable in interface com.google.appengine.api.datastore.DatastoreConfig
The default configuration for the datastore.
DEFAULT_ALLOW_TRUNCATE - Static variable in class com.google.appengine.api.urlfetch.FetchOptions
 
DEFAULT_CHUNK_SIZE - Static variable in class com.google.appengine.api.datastore.FetchOptions
Deprecated. Instead of using DEFAULT_CHUNK_SIZE, do not specify a chunk size.
DEFAULT_FOLLOW_REDIRECTS - Static variable in class com.google.appengine.api.urlfetch.FetchOptions
 
delete(Key...) - Method in interface com.google.appengine.api.datastore.DatastoreService
Deletes the Entity entities specified by keys.
delete(Transaction, Key...) - Method in interface com.google.appengine.api.datastore.DatastoreService
Exhibits the same behavior as DatastoreService.delete(Key[]), but executes within the provided transaction.
delete(Iterable<Key>) - Method in interface com.google.appengine.api.datastore.DatastoreService
Equivalent to DatastoreService.delete(Key...).
delete(Transaction, Iterable<Key>) - Method in interface com.google.appengine.api.datastore.DatastoreService
Exhibits the same behavior as DatastoreService.delete(Iterable), but executes within the provided transaction.
delete(Object) - Method in interface com.google.appengine.api.memcache.MemcacheService
Removes key from the cache.
delete(Object, long) - Method in interface com.google.appengine.api.memcache.MemcacheService
Removes the given key from the cache, and prevents it from being added under the MemcacheService.SetPolicy.ADD_ONLY_IF_NOT_PRESENT policy for millisNoReAdd milliseconds thereafter.
deleteAll(Collection<Object>) - Method in interface com.google.appengine.api.memcache.MemcacheService
Batch version of MemcacheService.delete(Object).
deleteAll(Collection<Object>, long) - Method in interface com.google.appengine.api.memcache.MemcacheService
Batch version of MemcacheService.delete(Object, long).
disallowTruncate() - Static method in class com.google.appengine.api.urlfetch.FetchOptions.Builder
Create a FetchOptions that disallows truncation of the response.
disallowTruncate() - Method in class com.google.appengine.api.urlfetch.FetchOptions
Disables response truncation.
doNotFollowRedirects() - Static method in class com.google.appengine.api.urlfetch.FetchOptions.Builder
Create a FetchOptions that does not follow redirects.
doNotFollowRedirects() - Method in class com.google.appengine.api.urlfetch.FetchOptions
Disables following of redirects.

E

Entity - Class in com.google.appengine.api.datastore
Entity is the fundamental unit of data storage.
Entity(String) - Constructor for class com.google.appengine.api.datastore.Entity
Create a new Entity with the specified kind and no parent Entity.
Entity(String, Key) - Constructor for class com.google.appengine.api.datastore.Entity
Create a new Entity with the specified kind and parent Entity.
Entity(String, String) - Constructor for class com.google.appengine.api.datastore.Entity
Create a new Entity with the specified kind and key name and no parent Entity.
Entity(String, String, Key) - Constructor for class com.google.appengine.api.datastore.Entity
Create a new Entity with the specified kind, key name, and parent Entity.
EntityNotFoundException - Exception in com.google.appengine.api.datastore
EntityNotFoundException is thrown when no Entity with the specified Key could be found.
EntityNotFoundException(Key) - Constructor for exception com.google.appengine.api.datastore.EntityNotFoundException
 
EntityTranslator - Class in com.google.appengine.api.datastore
EntityTranslator contains the logic to translate an Entity into the protocol buffers that are used to pass it to the implementation of the API.
equals(Object) - Method in class com.google.appengine.api.datastore.Blob
Two Blob objects are considered equal if their contained bytes match exactly.
equals(Object) - Method in class com.google.appengine.api.datastore.DataTypeTranslator.ComparableByteArray
 
equals(Object) - Method in class com.google.appengine.api.datastore.Entity
Two Entity objects are considered equal if they refer to the same entity (i.e.
equals(Object) - Method in class com.google.appengine.api.datastore.Key
Compares two Key objects by comparing ids, kinds, parent and appIdNamespace.
equals(Object) - Method in class com.google.appengine.api.datastore.Link
Two Link objects are considered equal if their content strings match exactly.
equals(Object) - Method in class com.google.appengine.api.datastore.Query
 
equals(Object) - Method in class com.google.appengine.api.datastore.Query.FilterPredicate
 
equals(Object) - Method in class com.google.appengine.api.datastore.Query.SortPredicate
 
equals(Object) - Method in class com.google.appengine.api.datastore.ShortBlob
Two ShortBlob objects are considered equal if their contained bytes match exactly.
equals(Object) - Method in class com.google.appengine.api.datastore.Text
Two Text objects are considered equal if their content strings match exactly.
equals(Object) - Method in class com.google.appengine.api.memcache.Expiration
 
equals(Object) - Method in class com.google.appengine.api.users.User
 
ErrorHandler - Interface in com.google.appengine.api.memcache
Handles errors raised by the MemcacheService, registered with MemcacheService.setErrorHandler(ErrorHandler).
Expiration - Class in com.google.appengine.api.memcache
Expiration specifications on MemcacheService.putAll(Map , Expiration) and MemcacheService.put(Object, Object, Expiration) operations.
extractImplicitPropertiesFromPb(EntityProto, Map<String, Object>) - Static method in class com.google.appengine.api.datastore.DataTypeTranslator
Copy all of the implicit properties present on proto into map.
extractIndexedPropertiesFromPb(EntityProto, Map<String, Object>) - Static method in class com.google.appengine.api.datastore.DataTypeTranslator
Copy all of the indexed properties present on proto into map.
extractPropertiesFromPb(EntityProto, Map<String, Object>) - Static method in class com.google.appengine.api.datastore.DataTypeTranslator
Copy all of the properties present on proto into map.

F

fetch(URL) - Method in interface com.google.appengine.api.urlfetch.URLFetchService
Convenience method for retrieving a specific URL via a HTTP GET request with no custom headers and default values for all FetchOptions attributes.
fetch(HTTPRequest) - Method in interface com.google.appengine.api.urlfetch.URLFetchService
Execute the specified request and return its response.
FetchOptions - Class in com.google.appengine.api.datastore
Describes the limit, offset, and chunk size to be applied when executing a PreparedQuery.
FetchOptions - Class in com.google.appengine.api.urlfetch
Allows users to customize the behavior of URLFetchService operations.
FetchOptions.Builder - Class in com.google.appengine.api.datastore
Contains static creation methods for FetchOptions.
FetchOptions.Builder - Class in com.google.appengine.api.urlfetch
Contains static creation methods for FetchOptions.
findIndexedPropertiesOnPb(EntityProto, String) - Static method in class com.google.appengine.api.datastore.DataTypeTranslator
Locates and returns all indexed properties with the given name on the given proto.
followRedirects() - Static method in class com.google.appengine.api.urlfetch.FetchOptions.Builder
Create a FetchOptions that follows redirects.
followRedirects() - Method in class com.google.appengine.api.urlfetch.FetchOptions
Enables following of redirects.

G

get(Key) - Method in interface com.google.appengine.api.datastore.DatastoreService
Retrieves the Entity with the specified Key.
get(Transaction, Key) - Method in interface com.google.appengine.api.datastore.DatastoreService
Exhibits the same behavior as DatastoreService.get(Key), but executes within the provided transaction.
get(Iterable<Key>) - Method in interface com.google.appengine.api.datastore.DatastoreService
Retrieves the set of Entities matching keys.
get(Transaction, Iterable<Key>) - Method in interface com.google.appengine.api.datastore.DatastoreService
Exhibits the same behavior as #get(Iterable), but executes within the provided transaction.
get(Object) - Method in interface com.google.appengine.api.memcache.MemcacheService
Fetches a previously-stored value, or null if unset.
getActiveTransactions() - Method in interface com.google.appengine.api.datastore.DatastoreService
 
getAll(Collection<Object>) - Method in interface com.google.appengine.api.memcache.MemcacheService
Performs a get of multiple keys at once.
getAncestor() - Method in class com.google.appengine.api.datastore.Query
Gets the current ancestor for this query, or null if there is no ancestor specified.
getAppId() - Method in class com.google.appengine.api.datastore.Entity
Returns the identifier of the application that owns this Entity.
getAttachments() - Method in class com.google.appengine.api.mail.MailService.Message
Gets the attachments of this message.
getAuthDomain() - Method in class com.google.appengine.api.users.User
 
getBcc() - Method in class com.google.appengine.api.mail.MailService.Message
Gets the recipients in the 'bcc' field of this message.
getBytes() - Method in class com.google.appengine.api.datastore.Blob
Return the bytes stored in this Blob.
getBytes() - Method in class com.google.appengine.api.datastore.ShortBlob
Return the bytes stored in this ShortBlob.
getBytesReturnedForHits() - Method in interface com.google.appengine.api.memcache.Stats
Sum of key and value bytes in successful get() and contains().
getCc() - Method in class com.google.appengine.api.mail.MailService.Message
Gets the recipients in the 'cc' field of this message.
getChild(String, long) - Method in class com.google.appengine.api.datastore.Key
Creates a new key having this as parent and the given numeric identifier.
getChild(String, String) - Method in class com.google.appengine.api.datastore.Key
Creates a new key having this as parent and the given name.
getComparablePropertyValue(Property) - Static method in class com.google.appengine.api.datastore.DataTypeTranslator
Returns the value for the property as its comparable representation type.
getContent() - Method in class com.google.appengine.api.urlfetch.HTTPResponse
Returns the content of the request, or null if there is no content present (e.g.
getCurrentTransaction() - Method in interface com.google.appengine.api.datastore.DatastoreService
Returns the current transaction for this thread, or throws an exception if there is no current transaction.
getCurrentTransaction(Transaction) - Method in interface com.google.appengine.api.datastore.DatastoreService
Returns the current transaction for this thread, or returns the parameter if there is no current transaction.
getCurrentUser() - Method in interface com.google.appengine.api.users.UserService
If the user is logged in, this method will return a User that contains information about them.
getData() - Method in class com.google.appengine.api.mail.MailService.Attachment
Gets the content of this attachment.
getDatastoreService() - Static method in class com.google.appengine.api.datastore.DatastoreServiceFactory
Creates a DatastoreService using the default config (DatastoreConfig.DEFAULT).
getDatastoreService(DatastoreConfig) - Static method in class com.google.appengine.api.datastore.DatastoreServiceFactory
Creates a DatastoreService using the provided config.
getDefaultDatastoreConfig() - Static method in class com.google.appengine.api.datastore.DatastoreServiceFactory
 
getDirection() - Method in class com.google.appengine.api.datastore.Query.SortPredicate
Gets the direction of the sort.
getEmail() - Method in class com.google.appengine.api.users.User
 
getErrorHandler() - Method in interface com.google.appengine.api.memcache.MemcacheService
Fetches the current error handler.
getFetchOptions() - Method in class com.google.appengine.api.urlfetch.HTTPRequest
Get the fetch options for this request.
getFileName() - Method in class com.google.appengine.api.mail.MailService.Attachment
Gets the file name of this attachment.
getFilterPredicates() - Method in class com.google.appengine.api.datastore.Query
Returns an unmodifiable list of the current filter predicates.
getFormat() - Method in interface com.google.appengine.api.images.Image
Gets the encoding format of the image.
getHeaders() - Method in class com.google.appengine.api.urlfetch.HTTPRequest
Returns an immutable List of HTTPHeader objects that have been added to this request.
getHeaders() - Method in class com.google.appengine.api.urlfetch.HTTPResponse
Returns a List of HTTP response headers that were returned by the remote server.
getHeight() - Method in interface com.google.appengine.api.images.Image
Gets the height of the image.
getHitCount() - Method in interface com.google.appengine.api.memcache.Stats
The counter of "successful" MemcacheService.get(Object) or MemcacheService.contains(Object) operations.
getHtmlBody() - Method in class com.google.appengine.api.mail.MailService.Message
Gets the html body of this message.
getId() - Method in class com.google.appengine.api.datastore.Key
Returns the numeric identifier of this Key.
getId() - Method in interface com.google.appengine.api.datastore.Transaction
 
getImageData() - Method in interface com.google.appengine.api.images.Image
Gets the raw imageData of the image.
getImagesService() - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates an implementation of the ImagesService.
getImplicitTransactionManagementPolicy() - Method in interface com.google.appengine.api.datastore.DatastoreConfig
 
getItemCount() - Method in interface com.google.appengine.api.memcache.Stats
Number of entries currently "alive" in the cache.
getKey() - Method in class com.google.appengine.api.datastore.Entity
Returns the Key that represents this Entity.
getKey() - Method in exception com.google.appengine.api.datastore.EntityNotFoundException
 
getKey() - Method in class com.google.appengine.api.datastore.KeyFactory.Builder
 
getKind() - Method in class com.google.appengine.api.datastore.Entity
Returns a logical type that is associated with this Entity.
getKind() - Method in class com.google.appengine.api.datastore.Key
Returns the kind of the Entity represented by this Key.
getKind() - Method in class com.google.appengine.api.datastore.Query
Only Entity objects whose kind matches this value will be returned.
getMailService() - Static method in class com.google.appengine.api.mail.MailServiceFactory
Returns an implementation of the MailService.
getMaxTimeWithoutAccess() - Method in interface com.google.appengine.api.memcache.Stats
Milliseconds since last access of least-recently-used live entry.
getMemcacheService() - Static method in class com.google.appengine.api.memcache.MemcacheServiceFactory
Gets a handle to the cache service.
getMethod() - Method in class com.google.appengine.api.urlfetch.HTTPRequest
Gets the HTTP method for this request (e.g.
getMissCount() - Method in interface com.google.appengine.api.memcache.Stats
The counter of "unsuccessful" MemcacheService.get(Object) or MemcacheService.contains(Object) operations.
getName() - Method in class com.google.appengine.api.datastore.Key
 
getName() - Method in class com.google.appengine.api.urlfetch.HTTPHeader
 
getNamespace() - Method in class com.google.appengine.api.datastore.Entity
Returns the namespace of the application/namespace that owns this Entity.
getNamespace() - Method in interface com.google.appengine.api.memcache.MemcacheService
Get the name of the namespace that will be used in API calls.
getNickname() - Method in class com.google.appengine.api.users.User
Return this user's nickname.
getOperator() - Method in class com.google.appengine.api.datastore.Query.FilterPredicate
Gets the operator describing how to apply the filter.
getParent() - Method in class com.google.appengine.api.datastore.Entity
Get a Key that corresponds to this the parent Entity of this Entity.
getParent() - Method in class com.google.appengine.api.datastore.Key
If this Key has a parent, return a Key that represents it.
getPayload() - Method in class com.google.appengine.api.urlfetch.HTTPRequest
Gets the payload (e.g.
getProperties() - Method in class com.google.appengine.api.datastore.Entity
Gets all of the properties belonging to this Entity.
getProperty(String) - Method in class com.google.appengine.api.datastore.Entity
Gets the property with the specified name.
getPropertyName() - Method in class com.google.appengine.api.datastore.Query.FilterPredicate
Gets the name of the property to be filtered on.
getPropertyName() - Method in class com.google.appengine.api.datastore.Query.SortPredicate
Gets the name of the property to sort on.
getPropertyValue(Property) - Static method in class com.google.appengine.api.datastore.DataTypeTranslator
Returns the value for the property as its canonical type.
getReplyTo() - Method in class com.google.appengine.api.mail.MailService.Message
Gets the reply to field of this message.
getResponseCode() - Method in class com.google.appengine.api.urlfetch.HTTPResponse
Returns the HTTP response code from the request (e.g.
getSecondsValue() - Method in class com.google.appengine.api.memcache.Expiration
Fetches the expiration date, in seconds-since-epoch.
getSender() - Method in class com.google.appengine.api.mail.MailService.Message
Gets the sender of this message.
getSortPredicates() - Method in class com.google.appengine.api.datastore.Query
Returns an unmodifiable list of the current sort predicates.
getStatistics() - Method in interface com.google.appengine.api.memcache.MemcacheService
Fetches some statistics about the cache and its usage.
getString() - Method in class com.google.appengine.api.datastore.KeyFactory.Builder
 
getSubject() - Method in class com.google.appengine.api.mail.MailService.Message
Gets the subject of this message.
getSupportedTypes() - Static method in class com.google.appengine.api.datastore.DataTypeUtils
Returns an unmodifiable Set of supported Class objects.
getTextBody() - Method in class com.google.appengine.api.mail.MailService.Message
Gets the text body of this message.
getTo() - Method in class com.google.appengine.api.mail.MailService.Message
Gets the recipients in the 'to' field of this message.
getTotalItemBytes() - Method in interface com.google.appengine.api.memcache.Stats
Sum of key and value sizes for all live entries currently in cache.
getTypeRank(Class<? extends Comparable>) - Static method in class com.google.appengine.api.datastore.DataTypeTranslator
Get the rank of the given datastore type relative to other datastore types.
getURL() - Method in class com.google.appengine.api.urlfetch.HTTPRequest
Gets the URL for this request.
getURLFetchService() - Static method in class com.google.appengine.api.urlfetch.URLFetchServiceFactory
 
getUserService() - Static method in class com.google.appengine.api.users.UserServiceFactory
Creates an implementation of the UserService.
getValue() - Method in class com.google.appengine.api.datastore.Link
Returns the value of this Link.
getValue() - Method in class com.google.appengine.api.datastore.Query.FilterPredicate
Gets the argument to the filter operator.
getValue() - Method in class com.google.appengine.api.datastore.Text
Return the value of this Text.
getValue() - Method in class com.google.appengine.api.urlfetch.HTTPHeader
 
getWidth() - Method in interface com.google.appengine.api.images.Image
Gets the width of the image.

H

handleDeserializationError(InvalidValueException) - Method in interface com.google.appengine.api.memcache.ErrorHandler
Handles deserialization errors.
handleDeserializationError(InvalidValueException) - Method in class com.google.appengine.api.memcache.LogAndContinueErrorHandler
Logs the thrown error condition, but does not expose it to application code.
handleDeserializationError(InvalidValueException) - Method in class com.google.appengine.api.memcache.StrictErrorHandler
Throws InvalidValueException for any call.
handleServiceError(MemcacheServiceException) - Method in interface com.google.appengine.api.memcache.ErrorHandler
Handles back-end service errors.
handleServiceError(MemcacheServiceException) - Method in class com.google.appengine.api.memcache.LogAndContinueErrorHandler
Logs the thrown error condition, but does not expose it to application code.
handleServiceError(MemcacheServiceException) - Method in class com.google.appengine.api.memcache.StrictErrorHandler
Throws MemcacheServiceException for any call.
hashCode() - Method in class com.google.appengine.api.datastore.Blob
 
hashCode() - Method in class com.google.appengine.api.datastore.DataTypeTranslator.ComparableByteArray
 
hashCode() - Method in class com.google.appengine.api.datastore.Entity
 
hashCode() - Method in class com.google.appengine.api.datastore.Key
 
hashCode() - Method in class com.google.appengine.api.datastore.Link
 
hashCode() - Method in class com.google.appengine.api.datastore.Query.FilterPredicate
 
hashCode() - Method in class com.google.appengine.api.datastore.Query
 
hashCode() - Method in class com.google.appengine.api.datastore.Query.SortPredicate
 
hashCode() - Method in class com.google.appengine.api.datastore.ShortBlob
 
hashCode() - Method in class com.google.appengine.api.datastore.Text
 
hashCode() - Method in class com.google.appengine.api.memcache.Expiration
 
hashCode() - Method in class com.google.appengine.api.users.User
 
hasProperty(String) - Method in class com.google.appengine.api.datastore.Entity
Returns true if a property has been set.
histogram(Image) - Method in interface com.google.appengine.api.images.ImagesService
Calculates the histogram of the image.
HTTPHeader - Class in com.google.appengine.api.urlfetch
HTTPHeader can represent either an HTTP request header, or an HTTP response header.
HTTPHeader(String, String) - Constructor for class com.google.appengine.api.urlfetch.HTTPHeader
Creates a new header with the specified name and value.
HTTPMethod - Enum in com.google.appengine.api.urlfetch
HTTPMethod is an enumeration of HTTP methods that can be sent to a remote server via the URLFetchService.
HTTPRequest - Class in com.google.appengine.api.urlfetch
HTTPRequest encapsulates a single HTTP request that is made via the URLFetchService.
HTTPRequest(URL) - Constructor for class com.google.appengine.api.urlfetch.HTTPRequest
Creates a HTTPRequest that represents a GET request to the specified URL.
HTTPRequest(URL, HTTPMethod) - Constructor for class com.google.appengine.api.urlfetch.HTTPRequest
Creates a HTTPRequest that represents an HTTP request to the speceified URL with the specified HTTP method (e.g.
HTTPRequest(URL, HTTPMethod, FetchOptions) - Constructor for class com.google.appengine.api.urlfetch.HTTPRequest
Creates a HTTPRequest that represents an HTTP request to the speceified URL with the specified HTTP method (e.g.
HTTPResponse - Class in com.google.appengine.api.urlfetch
HTTPResponse encapsulates the results of a HTTPRequest made via the URLFetchService.

I

Image - Interface in com.google.appengine.api.images
Image represents an image that can be manipulated by the ImagesService.
Image.Format - Enum in com.google.appengine.api.images
Image formats usable by the images api.
ImagesService - Interface in com.google.appengine.api.images
The images service provides methods to apply transformations to images.
ImagesService.OutputEncoding - Enum in com.google.appengine.api.images
Valid output encoding formats usable for image transforms.
ImagesServiceFactory - Class in com.google.appengine.api.images
Factory for creating an ImagesService, Images and Transforms.
ImagesServiceFailureException - Exception in com.google.appengine.api.images
ImagesServiceFailureException is thrown when any unknown error occurs while communicating with the images service.
ImagesServiceFailureException(String) - Constructor for exception com.google.appengine.api.images.ImagesServiceFailureException
Creates an exception with the supplied message.
ImplicitTransactionManagementPolicy - Enum in com.google.appengine.api.datastore
Describes the various policies the datastore can follow for implicit transaction management.
increment(Object, long) - Method in interface com.google.appengine.api.memcache.MemcacheService
Atomically fetches, increments, and stores a given integral value.
InvalidValueException - Exception in com.google.appengine.api.memcache
Thrown when a cache entry has content, but it cannot be read.
InvalidValueException(String, Throwable) - Constructor for exception com.google.appengine.api.memcache.InvalidValueException
 
InvalidValueException(String) - Constructor for exception com.google.appengine.api.memcache.InvalidValueException
 
isActive() - Method in interface com.google.appengine.api.datastore.Transaction
 
isComplete() - Method in class com.google.appengine.api.datastore.Key
Returns true if this Key has a name specified or has been assigned an identifier.
isKeysOnly() - Method in class com.google.appengine.api.datastore.Query
Returns true if this query will fetch and return keys only, false if it will fetch and return full entities.
isSupportedType(Class<?>) - Static method in class com.google.appengine.api.datastore.DataTypeUtils
Returns true if and only if the supplied Class can be stored in the data store.
isUserAdmin() - Method in interface com.google.appengine.api.users.UserService
Returns true if the user making this request is an admin for this application, false otherwise.
isUserLoggedIn() - Method in interface com.google.appengine.api.users.UserService
Returns true if there is a user logged in, false otherwise.

K

Key - Class in com.google.appengine.api.datastore
The primary key for a datastore entity.
KEY_RESERVED_PROPERTY - Static variable in class com.google.appengine.api.datastore.Entity
A reserved property name used to refer to the key of the entity.
KeyFactory - Class in com.google.appengine.api.datastore
Allows you to create arbitrary Key objects in the root entity group group (no parent).
KeyFactory.Builder - Class in com.google.appengine.api.datastore
Helper class that aids in the construction of Keys with ancestors.
KeyFactory.Builder(String, String) - Constructor for class com.google.appengine.api.datastore.KeyFactory.Builder
Create a Builder, establishing a Key constructed from the provided kind and name as the topmost ancestor.
KeyFactory.Builder(String, long) - Constructor for class com.google.appengine.api.datastore.KeyFactory.Builder
Create a Builder, establishing a Key constructed from the provided kind and id as the topmost ancestor.
KeyFactory.Builder(Key) - Constructor for class com.google.appengine.api.datastore.KeyFactory.Builder
Create a Builder, establishing the provided Key as the topmost ancestor.
keyToString(Key) - Static method in class com.google.appengine.api.datastore.KeyFactory
Converts a Key into a websafe string.

L

limit(int) - Method in class com.google.appengine.api.datastore.FetchOptions
Sets the limit.
Link - Class in com.google.appengine.api.datastore
A Link is a URL of limited length.
Link(String) - Constructor for class com.google.appengine.api.datastore.Link
Constructs a new Link object with the specified value.
LogAndContinueErrorHandler - Class in com.google.appengine.api.memcache
The default error handler, which will cause most service errors to behave as though there were a cache miss, not an error.
LogAndContinueErrorHandler(Level) - Constructor for class com.google.appengine.api.memcache.LogAndContinueErrorHandler
Constructor for a given logging level.

M

MailService - Interface in com.google.appengine.api.mail
The MailService provides a way for user code to send emails to arbitrary destinations.
MailService.Attachment - Class in com.google.appengine.api.mail
 
MailService.Attachment(String, byte[]) - Constructor for class com.google.appengine.api.mail.MailService.Attachment
Attachments are an optional part of messages, but if present, all information about them must be provided.
MailService.Message - Class in com.google.appengine.api.mail
Messages are prepared by the caller, and then submitted to the Mail service for sending.
MailService.Message() - Constructor for class com.google.appengine.api.mail.MailService.Message
 
MailService.Message(String, String, String, String) - Constructor for class com.google.appengine.api.mail.MailService.Message
Convenience constructor for simple messages
MailServiceFactory - Class in com.google.appengine.api.mail
Factory for creating a MailService.
MailServiceFactory() - Constructor for class com.google.appengine.api.mail.MailServiceFactory
 
makeComposite(Image, int, int, float, Composite.Anchor) - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates an image composition operation.
makeCompositeTransform(Collection<Transform>) - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates a composite transform that can represent multiple transforms applied in series.
makeCompositeTransform() - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates a composite transform that can represent multiple transforms applied in series.
makeCrop(float, float, float, float) - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates a transform that will crop an image to fit within the bounding box specified.
makeCrop(double, double, double, double) - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates a transform that will crop an image to fit within the bounding box specified.
makeHorizontalFlip() - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates a transform that will horizontally flip an image.
makeImage(byte[]) - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates an image from the provided imageData.
makeImFeelingLucky() - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates a transform that automatically adjust contrast and color levels.
makeResize(int, int) - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates a transform that will resize an image to fit within a box with width width and height height.
makeRotate(int) - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates a transform that rotates an image by degrees degrees clockwise.
makeVerticalFlip() - Static method in class com.google.appengine.api.images.ImagesServiceFactory
Creates a transform that will vertically flip an image.
MAX_COMPOSITES_PER_REQUEST - Static variable in interface com.google.appengine.api.images.ImagesService
 
MAX_LINK_PROPERTY_LENGTH - Static variable in class com.google.appengine.api.datastore.DataTypeUtils
 
MAX_RESIZE_DIMENSIONS - Static variable in interface com.google.appengine.api.images.ImagesService
 
MAX_SHORT_BLOB_PROPERTY_LENGTH - Static variable in class com.google.appengine.api.datastore.DataTypeUtils
This is the maximum number of bytes that a ShortBlob property can contain.
MAX_STRING_PROPERTY_LENGTH - Static variable in class com.google.appengine.api.datastore.DataTypeUtils
This is the maximum number of characters that a string property can contain.
MAX_TRANSFORMS_PER_REQUEST - Static variable in interface com.google.appengine.api.images.ImagesService
 
MemcacheService - Interface in com.google.appengine.api.memcache
The Java API for the App Engine Memcache service.
MemcacheService.SetPolicy - Enum in com.google.appengine.api.memcache
Cache replacement strategies for MemcacheService.put(java.lang.Object, java.lang.Object, com.google.appengine.api.memcache.Expiration, com.google.appengine.api.memcache.MemcacheService.SetPolicy) operations, indicating how to handle putting a value that already exists.
MemcacheServiceException - Exception in com.google.appengine.api.memcache
An exception for backend non-availability or similar error states which may occur, but are not necessarily indicative of a coding or usage error by the application.
MemcacheServiceException(String, Throwable) - Constructor for exception com.google.appengine.api.memcache.MemcacheServiceException
 
MemcacheServiceException(String) - Constructor for exception com.google.appengine.api.memcache.MemcacheServiceException
 
MemcacheServiceFactory - Class in com.google.appengine.api.memcache
The factory by which users acquire a handle to the MemcacheService.

O

offset(int) - Method in class com.google.appengine.api.datastore.FetchOptions
Sets the offset.
onDate(Date) - Static method in class com.google.appengine.api.memcache.Expiration
Creates an expiration at specific date/time.

P

preConcatenate(Transform) - Method in class com.google.appengine.api.images.CompositeTransform
Concatenates a transform to the start of this composite transform.
prefetchSize(int) - Method in class com.google.appengine.api.datastore.FetchOptions
Sets the number of entities to prefetch.
prepare(Query) - Method in interface com.google.appengine.api.datastore.DatastoreService
Prepares a query for execution.
prepare(Transaction, Query) - Method in interface com.google.appengine.api.datastore.DatastoreService
Exhibits the same behavior as DatastoreService.prepare(Query), but executes within the provided transaction.
PreparedQuery - Interface in com.google.appengine.api.datastore
Contains methods for fetching and returning entities from a Query.
PreparedQuery.TooManyResultsException - Exception in com.google.appengine.api.datastore
Indicates that too many results were found for PreparedQuery.asSingleEntity().
PreparedQuery.TooManyResultsException() - Constructor for exception com.google.appengine.api.datastore.PreparedQuery.TooManyResultsException
 
put(Entity) - Method in interface com.google.appengine.api.datastore.DatastoreService
If the specified Entity does not yet exist in the data store, create it and assign its Key.
put(Transaction, Entity) - Method in interface com.google.appengine.api.datastore.DatastoreService
Exhibits the same behavior as DatastoreService.put(Entity), but executes within the provided transaction.
put(Iterable<Entity>) - Method in interface com.google.appengine.api.datastore.DatastoreService
Performs a batch put of all entities.
put(Transaction, Iterable<Entity>) - Method in interface com.google.appengine.api.datastore.DatastoreService
Exhibits the same behavior as #put(Iterable), but executes within the provided transaction.
put(Object, Object, Expiration, MemcacheService.SetPolicy) - Method in interface com.google.appengine.api.memcache.MemcacheService
Store a new value into the cache, using key, but subject to the policy regarding existing entries.
put(Object, Object, Expiration) - Method in interface com.google.appengine.api.memcache.MemcacheService
Convenience put, equivalent to put(key, value, expiration, SetPolicy.SET_ALWAYS).
put(Object, Object) - Method in interface com.google.appengine.api.memcache.MemcacheService
A convenience shortcut, equivalent to put(key, value, null, SetPolicy.SET_ALWAYS).
putAll(Map<Object, Object>, Expiration, MemcacheService.SetPolicy) - Method in interface com.google.appengine.api.memcache.MemcacheService
A batch-processing variant of MemcacheService.put(java.lang.Object, java.lang.Object, com.google.appengine.api.memcache.Expiration, com.google.appengine.api.memcache.MemcacheService.SetPolicy).
putAll(Map<Object, Object>, Expiration) - Method in interface com.google.appengine.api.memcache.MemcacheService
Convenience multi-put, equivalent to putAll(values, expires, SetPolicy.SET_ALWAYS).
putAll(Map<Object, Object>) - Method in interface com.google.appengine.api.memcache.MemcacheService
Convenience multi-put, equivalent to putAll(values, expires, SetPolicy.SET_ALWAYS).

Q

Query - Class in com.google.appengine.api.datastore
Query encapsulates a request for zero or more Entity objects out of the datastore.
Query(String) - Constructor for class com.google.appengine.api.datastore.Query
Create a new Query that finds Entity objects with the specified kind.
Query(Key) - Constructor for class com.google.appengine.api.datastore.Query
Create a new Query that finds Entity objects with the specified Key as an ancestor.
Query(String, Key) - Constructor for class com.google.appengine.api.datastore.Query
Create a new Query that finds Entity objects with the specified kind.
Query.FilterOperator - Enum in com.google.appengine.api.datastore
FilterOperator specifies what type of operation you want to apply to your filter.
Query.FilterPredicate - Class in com.google.appengine.api.datastore
FilterPredicate is a data container that holds a single filter predicate.
Query.FilterPredicate(String, Query.FilterOperator, Object) - Constructor for class com.google.appengine.api.datastore.Query.FilterPredicate
 
Query.SortDirection - Enum in com.google.appengine.api.datastore
SortDirection controls the order of a sort.
Query.SortPredicate - Class in com.google.appengine.api.datastore
SortPredicate is a data container that holds a single sort predicate.
Query.SortPredicate(String, Query.SortDirection) - Constructor for class com.google.appengine.api.datastore.Query.SortPredicate
 

R

removeProperty(String) - Method in class com.google.appengine.api.datastore.Entity
Removes any property with the specified name.
ResponseTooLargeException - Exception in com.google.appengine.api.urlfetch
ResponseTooLargeException is thrown when the result of a URLFetchService operation is too large.
ResponseTooLargeException(String) - Constructor for exception com.google.appengine.api.urlfetch.ResponseTooLargeException
 
rollback() - Method in interface com.google.appengine.api.datastore.Transaction
Rolls back the transaction.

S

send(MailService.Message) - Method in interface com.google.appengine.api.mail.MailService
Sends a mail that has been prepared in a MailService.Message.
sendToAdmins(MailService.Message) - Method in interface com.google.appengine.api.mail.MailService
Send an email alert to all admins of an application.
setAncestor(Key) - Method in class com.google.appengine.api.datastore.Query
Sets an ancestor for this query.
setAttachments(Collection<MailService.Attachment>) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the attachments of this message.
setAttachments(MailService.Attachment...) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the attachments of this message.
setBcc(Collection<String>) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the 'bcc' field of this message.
setBcc(String...) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the 'bcc' field of this message.
setCc(Collection<String>) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the 'cc' field of this message.
setCc(String...) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the 'cc' field of this message.
setErrorHandler(ErrorHandler) - Method in interface com.google.appengine.api.memcache.MemcacheService
Registers a new ErrorHandler.
setHeader(HTTPHeader) - Method in class com.google.appengine.api.urlfetch.HTTPRequest
Sets an HTTPHeader for this request.
setHtmlBody(String) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the html body of this message.
setImageData(byte[]) - Method in interface com.google.appengine.api.images.Image
Sets the image to contain the image data contained in imageData.
setKeysOnly() - Method in class com.google.appengine.api.datastore.Query
Makes this query fetch and return only keys, not full entities.
setNamespace(String) - Method in interface com.google.appengine.api.memcache.MemcacheService
Change the namespace used in API calls.
setPayload(byte[]) - Method in class com.google.appengine.api.urlfetch.HTTPRequest
Sets the payload for this request.
setPropertiesFrom(Entity) - Method in class com.google.appengine.api.datastore.Entity
A convenience method that populates the properties of this Entity with the properties set on the provided Entity.
setProperty(String, Object) - Method in class com.google.appengine.api.datastore.Entity
Sets the property named, propertyName, to value.
setReplyTo(String) - Method in class com.google.appengine.api.mail.MailService.Message
replyTo may be , or must be a valid email address otherwise.
setSender(String) - Method in class com.google.appengine.api.mail.MailService.Message
sender must correspond to the valid email address of one of the admins for this application, or to the email address of the currently logged-in user.
setSubject(String) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the subject of this message.
setTextBody(String) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the text body of this message.
setTo(Collection<String>) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the 'to' field of this message.
setTo(String...) - Method in class com.google.appengine.api.mail.MailService.Message
Sets the 'to' field of this message.
setUnindexedProperty(String, Object) - Method in class com.google.appengine.api.datastore.Entity
Like #setProperty, but doesn't index the property in the built-in single property indexes.
ShortBlob - Class in com.google.appengine.api.datastore
ShortBlob contains an array of bytes no longer than DataTypeUtils.MAX_SHORT_BLOB_PROPERTY_LENGTH.
ShortBlob(byte[]) - Constructor for class com.google.appengine.api.datastore.ShortBlob
Construct a new ShortBlob with the specified bytes.
Stats - Interface in com.google.appengine.api.memcache
Statistics from the cache, available via MemcacheService.getStatistics()
StrictErrorHandler - Class in com.google.appengine.api.memcache
A strict error handler, which will throw MemcacheServiceException for any service error condition.
StrictErrorHandler() - Constructor for class com.google.appengine.api.memcache.StrictErrorHandler
 
stringToKey(String) - Static method in class com.google.appengine.api.datastore.KeyFactory
Converts a String-representation of a Key into the Key instance it represents.

T

Text - Class in com.google.appengine.api.datastore
Text wraps around a string of unlimited size.
Text(String) - Constructor for class com.google.appengine.api.datastore.Text
Construct a new Text object with the specified value.
toString() - Method in class com.google.appengine.api.datastore.Blob
Simply prints the number of bytes contained in this Blob.
toString() - Method in class com.google.appengine.api.datastore.Entity
 
toString() - Method in class com.google.appengine.api.datastore.Key
 
toString() - Method in class com.google.appengine.api.datastore.Link
Returns the entire text of this Link.
toString() - Method in class com.google.appengine.api.datastore.ShortBlob
Simply prints the number of bytes contained in this ShortBlob.
toString() - Method in class com.google.appengine.api.datastore.Text
Returns the first 70 characters of the underlying string.
toString() - Method in class com.google.appengine.api.users.User
 
Transaction - Interface in com.google.appengine.api.datastore
Describes a logical unit of work to be performed against the datastore.
Transform - Class in com.google.appengine.api.images
A transform that can be applied to an Image.
Transform() - Constructor for class com.google.appengine.api.images.Transform
 

U

URLFetchService - Interface in com.google.appengine.api.urlfetch
The URLFetchService provides a way for user code to execute HTTP requests to external URLs.
URLFetchServiceFactory - Class in com.google.appengine.api.urlfetch
 
URLFetchServiceFactory() - Constructor for class com.google.appengine.api.urlfetch.URLFetchServiceFactory
 
User - Class in com.google.appengine.api.users
User represents a specific user, represented by the combination of an email address and a specific Google Apps domain (which we call an authDomain).
User(String, String) - Constructor for class com.google.appengine.api.users.User
Creates a new User.
UserService - Interface in com.google.appengine.api.users
The UserService provides information useful for forcing a user to log in or out, and retrieving information about the user who is currently logged-in.
UserServiceFactory - Class in com.google.appengine.api.users
Creates a UserService.
UserServiceFailureException - Exception in com.google.appengine.api.users
UserServiceFailureException is thrown when any unknown error occurs while communicating with the user service.
UserServiceFailureException(String) - Constructor for exception com.google.appengine.api.users.UserServiceFailureException
 

V

valueOf(String) - Static method in enum com.google.appengine.api.datastore.ImplicitTransactionManagementPolicy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.google.appengine.api.datastore.Query.FilterOperator
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.google.appengine.api.datastore.Query.SortDirection
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.google.appengine.api.images.Composite.Anchor
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.google.appengine.api.images.Image.Format
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.google.appengine.api.images.ImagesService.OutputEncoding
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.google.appengine.api.memcache.MemcacheService.SetPolicy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.google.appengine.api.urlfetch.HTTPMethod
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.google.appengine.api.datastore.ImplicitTransactionManagementPolicy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.google.appengine.api.datastore.Query.FilterOperator
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.google.appengine.api.datastore.Query.SortDirection
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.google.appengine.api.images.Composite.Anchor
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.google.appengine.api.images.Image.Format
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.google.appengine.api.images.ImagesService.OutputEncoding
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.google.appengine.api.memcache.MemcacheService.SetPolicy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.google.appengine.api.urlfetch.HTTPMethod
Returns an array containing the constants of this enum type, in the order they are declared.

W

withChunkSize(int) - Static method in class com.google.appengine.api.datastore.FetchOptions.Builder
Create a FetchOptions with the given chunk size.
withLimit(int) - Static method in class com.google.appengine.api.datastore.FetchOptions.Builder
Create a FetchOptions with the given limit.
withOffset(int) - Static method in class com.google.appengine.api.datastore.FetchOptions.Builder
Create a FetchOptions with the given offset.
withPrefetchSize(int) - Static method in class com.google.appengine.api.datastore.FetchOptions.Builder
Create a FetchOptions with the given prefetch size.

A B C D E F G H I K L M O P Q R S T U V W