类 QueryResponse

    • 构造器详细资料

      • QueryResponse

        public QueryResponse()
        Constructs a new QueryResponse object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.
    • 方法详细资料

      • setLastEvaluatedKey

        public void setLastEvaluatedKey​(Key lastKey)
        Set the LastEvaluatedKey for this query operation, and for next time's request, you can get next page of items from the LastEvaluatedKey.
        参数:
        lastKey - The LastEvaluatedKey for this query operation, and for next time's request, you can get next page of items from the LastEvaluatedKey.
      • setItems

        public void setItems​(List<Map<String,​AttributeValue>> items)
        Set the list of result items from this query operation.
        参数:
        items - A list of result items from this query operation.
      • getLastEvaluatedKey

        public Key getLastEvaluatedKey()
        Get the LastEvaluatedKey for this query operation, and for next time's request, you can get next page of items from the LastEvaluatedKey.
        返回:
        The LastEvaluatedKey for this query operation, and for next time's request, you can get next page of items from the LastEvaluatedKey.
        另请参阅:
        Key
      • getItems

        public List<Map<String,​AttributeValue>> getItems()
        Get the list of result items from this query operation.
        返回:
        A list of result items from this query operation.