Skip to content

docs: corrected javadoc #257

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 10, 2019
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ public void setCount(final Long count) {
}

/**
* @return contains the names of document attributes that are used to determine the target shard for documents. Only
* in a cluster setup
* @return the number of shards of the collection. Only in a cluster setup (else returning null).
*/
public Integer getNumberOfShards() {
return numberOfShards;
Expand All @@ -97,7 +96,8 @@ public void setNumberOfShards(final Integer numberOfShards) {
}

/**
* @return the number of shards of the collection. Only in a cluster setup.
* @return the names of document attributes that are used to determine the target shard for documents.
* Only in a cluster setup (else returning null).
*/
public Collection<String> getShardKeys() {
return shardKeys;
Expand All @@ -116,7 +116,7 @@ public void setReplicationFactor(final Integer replicationFactor) {
}

/**
* @return whether the collection is a satellite collection. Only in a enterprise cluster setup.
* @return whether the collection is a satellite collection. Only in an enterprise cluster setup (else returning null).
*/
public Boolean getSatellite() {
return this.replicationFactor.getSatellite();
Expand Down