protected boolean hasAnotherPageToLoad()

in src/main/java/com/amazonaws/services/dynamodbv2/LockItemPaginatedScanIterator.java [46:52]


    protected boolean hasAnotherPageToLoad() {
        if (!this.hasLoadedFirstPage()) {
            return true;
        }

        return this.scanResponse.lastEvaluatedKey() != null && !this.scanResponse.lastEvaluatedKey().isEmpty();
    }