Skip to content

Commit 58861ca

Browse files
committed
corrected javadoc
1 parent 17035b2 commit 58861ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/arangodb/entity/CollectionPropertiesEntity.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ public void setCount(final Long count) {
8585
}
8686

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

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

118118
/**
119-
* @return whether the collection is a satellite collection. Only in a enterprise cluster setup.
119+
* @return whether the collection is a satellite collection. Only in an enterprise cluster setup (else returning null).
120120
*/
121121
public Boolean getSatellite() {
122122
return this.replicationFactor.getSatellite();

0 commit comments

Comments
 (0)