All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.appengine.repackaged.com.google.datastore.v1.LookupResponseOrBuilder Maven / Gradle / Ivy

Go to download

API for Google App Engine standard environment with some of the dependencies shaded (repackaged)

There is a newer version: 2.0.27
Show newest version
/*
 * Copyright 2020 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/datastore/v1/datastore.proto

package com.google.datastore.v1;

public interface LookupResponseOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.datastore.v1.LookupResponse)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * Entities found as `ResultType.FULL` entities. The order of results in this
   * field is undefined and has no relation to the order of the keys in the
   * input.
   * 
* * repeated .google.datastore.v1.EntityResult found = 1; */ java.util.List getFoundList(); /** * * *
   * Entities found as `ResultType.FULL` entities. The order of results in this
   * field is undefined and has no relation to the order of the keys in the
   * input.
   * 
* * repeated .google.datastore.v1.EntityResult found = 1; */ com.google.datastore.v1.EntityResult getFound(int index); /** * * *
   * Entities found as `ResultType.FULL` entities. The order of results in this
   * field is undefined and has no relation to the order of the keys in the
   * input.
   * 
* * repeated .google.datastore.v1.EntityResult found = 1; */ int getFoundCount(); /** * * *
   * Entities found as `ResultType.FULL` entities. The order of results in this
   * field is undefined and has no relation to the order of the keys in the
   * input.
   * 
* * repeated .google.datastore.v1.EntityResult found = 1; */ java.util.List getFoundOrBuilderList(); /** * * *
   * Entities found as `ResultType.FULL` entities. The order of results in this
   * field is undefined and has no relation to the order of the keys in the
   * input.
   * 
* * repeated .google.datastore.v1.EntityResult found = 1; */ com.google.datastore.v1.EntityResultOrBuilder getFoundOrBuilder(int index); /** * * *
   * Entities not found as `ResultType.KEY_ONLY` entities. The order of results
   * in this field is undefined and has no relation to the order of the keys
   * in the input.
   * 
* * repeated .google.datastore.v1.EntityResult missing = 2; */ java.util.List getMissingList(); /** * * *
   * Entities not found as `ResultType.KEY_ONLY` entities. The order of results
   * in this field is undefined and has no relation to the order of the keys
   * in the input.
   * 
* * repeated .google.datastore.v1.EntityResult missing = 2; */ com.google.datastore.v1.EntityResult getMissing(int index); /** * * *
   * Entities not found as `ResultType.KEY_ONLY` entities. The order of results
   * in this field is undefined and has no relation to the order of the keys
   * in the input.
   * 
* * repeated .google.datastore.v1.EntityResult missing = 2; */ int getMissingCount(); /** * * *
   * Entities not found as `ResultType.KEY_ONLY` entities. The order of results
   * in this field is undefined and has no relation to the order of the keys
   * in the input.
   * 
* * repeated .google.datastore.v1.EntityResult missing = 2; */ java.util.List getMissingOrBuilderList(); /** * * *
   * Entities not found as `ResultType.KEY_ONLY` entities. The order of results
   * in this field is undefined and has no relation to the order of the keys
   * in the input.
   * 
* * repeated .google.datastore.v1.EntityResult missing = 2; */ com.google.datastore.v1.EntityResultOrBuilder getMissingOrBuilder(int index); /** * * *
   * A list of keys that were not looked up due to resource constraints. The
   * order of results in this field is undefined and has no relation to the
   * order of the keys in the input.
   * 
* * repeated .google.datastore.v1.Key deferred = 3; */ java.util.List getDeferredList(); /** * * *
   * A list of keys that were not looked up due to resource constraints. The
   * order of results in this field is undefined and has no relation to the
   * order of the keys in the input.
   * 
* * repeated .google.datastore.v1.Key deferred = 3; */ com.google.datastore.v1.Key getDeferred(int index); /** * * *
   * A list of keys that were not looked up due to resource constraints. The
   * order of results in this field is undefined and has no relation to the
   * order of the keys in the input.
   * 
* * repeated .google.datastore.v1.Key deferred = 3; */ int getDeferredCount(); /** * * *
   * A list of keys that were not looked up due to resource constraints. The
   * order of results in this field is undefined and has no relation to the
   * order of the keys in the input.
   * 
* * repeated .google.datastore.v1.Key deferred = 3; */ java.util.List getDeferredOrBuilderList(); /** * * *
   * A list of keys that were not looked up due to resource constraints. The
   * order of results in this field is undefined and has no relation to the
   * order of the keys in the input.
   * 
* * repeated .google.datastore.v1.Key deferred = 3; */ com.google.datastore.v1.KeyOrBuilder getDeferredOrBuilder(int index); /** * * *
   * The identifier of the transaction that was started as part of this Lookup
   * request.
   * Set only when [ReadOptions.begin_transaction][] was set in
   * [LookupRequest.read_options][google.datastore.v1.LookupRequest.read_options].
   * 
* * bytes transaction = 5; * * @return The transaction. */ com.google.protobuf.ByteString getTransaction(); /** * * *
   * The time at which these entities were read or found missing.
   * 
* * .google.protobuf.Timestamp read_time = 7; * * @return Whether the readTime field is set. */ boolean hasReadTime(); /** * * *
   * The time at which these entities were read or found missing.
   * 
* * .google.protobuf.Timestamp read_time = 7; * * @return The readTime. */ com.google.protobuf.Timestamp getReadTime(); /** * * *
   * The time at which these entities were read or found missing.
   * 
* * .google.protobuf.Timestamp read_time = 7; */ com.google.protobuf.TimestampOrBuilder getReadTimeOrBuilder(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy