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

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

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

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

public class StringOptions {

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

    private Range length = DEFAULT_LENGTH;

    public Range getLength() {
        return length;
    }

    public void setLength(Range length) {
        this.length = length;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy