223224225226227228229230
/** * @param rw * @return */ public BucketPropertiesBuilder rw(Quora rw) { this.rw = new Quorum(rw); return this; }
228229230231232233234235
this.rw = new Quorum(rw); return this; } public BucketPropertiesBuilder rw(int rw) { this.rw = new Quorum(rw); return this; }
242243244245246247248249
/** * @param dw * @return */ public BucketPropertiesBuilder dw(Quora dw) { this.dw = new Quorum(dw); return this; }
247248249250251252253254
this.dw = new Quorum(dw); return this; } public BucketPropertiesBuilder dw(int dw) { this.dw = new Quorum(dw); return this; }
261262263264265266267268
/** * @param pr * @return */ public BucketPropertiesBuilder pr(Quora pr) { this.pr = new Quorum(pr); return this; }
266267268269270271272273
this.pr = new Quorum(pr); return this; } public BucketPropertiesBuilder pr(int pr) { this.pr = new Quorum(pr); return this; }
280281282283284285286287
/** * @param pw * @return */ public BucketPropertiesBuilder pw(Quora pw) { this.pw = new Quorum(pw); return this; }
285286287288289290291292
this.pw = new Quorum(pw); return this; } public BucketPropertiesBuilder pw(int pw) { this.pw = new Quorum(pw); return this; }
270271272273274275276277
this.r = r; return this; } public Builder pr(int pr) { this.pr = new Quorum(pr); return this; }
275276277278279280281282
this.pr = new Quorum(pr); return this; } public Builder pr(Quora pr) { this.pr = new Quorum(pr); return this; }