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

com.github.rrsunhome.excelsql.config.Range Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.github.rrsunhome.excelsql.config;

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * @author : wangqijia
 * create at:  2021/10/26  下午9:34
 */
@Getter
@AllArgsConstructor
public class Range {

    private T start;

    private T end;


    public static Range createNumRange(Integer start, Integer end) {
        if (start < 0 && start > end) {
            throw new IllegalArgumentException("无效参数");
        }
        return new Range<>(start, end);

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy