Package com.google.apphosting.api.DatastorePb

Examples of com.google.apphosting.api.DatastorePb.CompiledCursor


public final class Cursor implements Serializable {
  static final long serialVersionUID = 3515556366838971499L;
  private CompiledCursor compiledCursor;

  Cursor() {
    compiledCursor = new CompiledCursor();
  }
View Full Code Here


  /**
   * @return a new cursor to the location in a query sorted in the reverse direction
   * @see com.google.appengine.api.datastore.Query#reverse()
   */
  public Cursor reverse() {
    CompiledCursor clone = compiledCursor.clone();
    for (Position pos : clone.positions()) {
      pos.setStartInclusive(!pos.isStartInclusive());
    }
    return new Cursor(clone);
  }
View Full Code Here

TOP

Related Classes of com.google.apphosting.api.DatastorePb.CompiledCursor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.