com.mindee.geometry.MinMax Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mindee-api-java Show documentation
Show all versions of mindee-api-java Show documentation
Java Library to call Mindee's Off-The-Shelf and Custom APIs
The newest version!
package com.mindee.geometry;
import lombok.Getter;
/** Minimum and maximum values. */
@Getter
public class MinMax {
private final Double min;
private final Double max;
public MinMax(Double min, Double max) {
this.min = min;
this.max = max;
}
}