All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.redis.spring.batch.gen.CollectionOptions Maven / Gradle / Ivy

The newest version!
package com.redis.spring.batch.gen;

import com.redis.spring.batch.common.Range;

public class CollectionOptions {

    public static final Range DEFAULT_MEMBER_RANGE = Range.of(1, 100);

    public static final Range DEFAULT_MEMBER_COUNT = Range.of(100);

    private Range memberRange = DEFAULT_MEMBER_RANGE;

    private Range memberCount = DEFAULT_MEMBER_COUNT;

    public Range getMemberRange() {
        return memberRange;
    }

    public void setMemberRange(Range range) {
        this.memberRange = range;
    }

    public Range getMemberCount() {
        return memberCount;
    }

    public void setMemberCount(Range count) {
        this.memberCount = count;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy