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

com.sbuslab.model.Range Maven / Gradle / Ivy

There is a newer version: 1.1.26
Show newest version
package com.sbuslab.model;

import java.math.BigDecimal;

import lombok.AllArgsConstructor;
import lombok.Data;


@Data
@AllArgsConstructor
public class Range {
    private BigDecimal from;
    private BigDecimal to;

    public Range(Long from, Long to) {
        this(from != null ? new BigDecimal(from) : null, to != null ? new BigDecimal(to) : null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy