DoubleMinMaxBoundsPredicate
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.predicate.DoubleMinMaxBoundsPredicate;
Implements
Undocumented Interfaces
MinMaxBounds<Double>
Members
static any() as Doubles
static atLeast(min as double) as Doubles
DoubleMinMaxBoundsPredicate.atLeast(myDouble);
Parameters:
min: double
Type: double
Return Type:
DoubleMinMaxBoundsPredicate
static atMost(max as double) as Doubles
DoubleMinMaxBoundsPredicate.atMost(myDouble);
Parameters:
max: double
Type: double
Return Type:
DoubleMinMaxBoundsPredicate
static between(min as double, max as double) as Doubles
DoubleMinMaxBoundsPredicate.between(myDouble, myDouble);
Parameters:
min: double
Type: double
max: double
Type: double
Return Type:
DoubleMinMaxBoundsPredicate
static exactly(value as double) as Doubles
DoubleMinMaxBoundsPredicate.exactly(myDouble);
Parameters:
value: double
Type: double
Return Type:
DoubleMinMaxBoundsPredicate