AI-generated Key Takeaways
-
MetadataBuffer is a data buffer that points to Metadata entries and is returned in responses to list requests.
-
Objects of this class behave as an Iterable and allow indexed access to entries using the
get(int row)method. -
You must call
release()on any MetadataBuffer objects when you are finished with them. -
The
getNextPageToken()method is deprecated and always returns null as paging is not supported.
A data buffer that points to Metadata entries. Objects of this class are returned in
responses to list requests (such as
query(Query)). This object behaves as an Iterable, as well as
allowing indexed access to its entries. Be sure to call release()
on any buffers when you are done with them.
Inherited Field Summary
Public Method Summary
| Metadata |
get(int
row)
|
| String |
getNextPageToken()
This method is deprecated. Paging is not supported, so this always returns
null.
|
| void |
release()
|
Inherited Method Summary
Public Methods
public Metadata get (int row)
public String getNextPageToken ()
This method is deprecated.
Paging is not supported, so this always returns null.