![JAR search and dependency download from the Maven repository](/logo.png)
com.github.houbb.valid.jsr.constraint.BigIntegerMinConstraint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of valid-jsr Show documentation
Show all versions of valid-jsr Show documentation
The jsr-303 module for valid framework.
package com.github.houbb.valid.jsr.constraint;
import com.github.houbb.heaven.annotation.ThreadSafe;
import com.github.houbb.valid.core.api.constraint.AbstractGreatThanConstraint;
import java.math.BigInteger;
/**
* 元素 BigInteger min 约束
* (1)value 必须小于等于 max
* @author binbin.hou
* @since 0.0.3
* @see BigInteger
*/
@ThreadSafe
class BigIntegerMinConstraint extends AbstractGreatThanConstraint {
public BigIntegerMinConstraint(boolean inclusive, BigInteger expect) {
super(inclusive, expect);
}
public BigIntegerMinConstraint(BigInteger expect) {
super(expect);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy