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

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

There is a newer version: 4.0.7
Show newest version
package com.redis.spring.batch.gen;

import com.redis.spring.batch.util.IntRange;

public class StringOptions {

    public static final IntRange DEFAULT_LENGTH = IntRange.is(100);

    private IntRange length = DEFAULT_LENGTH;

    public IntRange getLength() {
        return length;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy