Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -170,4 +170,54 @@ public interface LookupRequestOrBuilder
* </code>
*/
com.google.datastore.v1.KeyOrBuilder getKeysOrBuilder(int index);

/**
*
*
* <pre>
* The properties to return. Defaults to returning all properties.
*
* If this field is set and an entity has a property not referenced in the
* mask, it will be absent from [LookupResponse.found.entity.properties][].
*
* The entity's key is always returned.
* </pre>
*
* <code>.google.datastore.v1.PropertyMask property_mask = 5;</code>
*
* @return Whether the propertyMask field is set.
*/
boolean hasPropertyMask();
/**
*
*
* <pre>
* The properties to return. Defaults to returning all properties.
*
* If this field is set and an entity has a property not referenced in the
* mask, it will be absent from [LookupResponse.found.entity.properties][].
*
* The entity's key is always returned.
* </pre>
*
* <code>.google.datastore.v1.PropertyMask property_mask = 5;</code>
*
* @return The propertyMask.
*/
com.google.datastore.v1.PropertyMask getPropertyMask();
/**
*
*
* <pre>
* The properties to return. Defaults to returning all properties.
*
* If this field is set and an entity has a property not referenced in the
* mask, it will be absent from [LookupResponse.found.entity.properties][].
*
* The entity's key is always returned.
* </pre>
*
* <code>.google.datastore.v1.PropertyMask property_mask = 5;</code>
*/
com.google.datastore.v1.PropertyMaskOrBuilder getPropertyMaskOrBuilder();
}
Loading