IntMinMaxBoundsPredicate
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.IntMinMaxBoundsPredicate;
Implements
Undocumented Interfaces
MinMaxBounds<Integer>
Members
static any() as Ints
static atLeast(min as int) as Ints
IntMinMaxBoundsPredicate.atLeast(myInt);
Parameters:
min: int
Type: int
Return Type:
IntMinMaxBoundsPredicate
static atMost(max as int) as Ints
IntMinMaxBoundsPredicate.atMost(myInt);
Parameters:
max: int
Type: int
Return Type:
IntMinMaxBoundsPredicate
static between(min as int, max as int) as Ints
IntMinMaxBoundsPredicate.between(myInt, myInt);
Parameters:
min: int
Type: int
max: int
Type: int
Return Type:
IntMinMaxBoundsPredicate
static exactly(value as int) as Ints
IntMinMaxBoundsPredicate.exactly(myInt);
Parameters:
value: int
Type: int
Return Type:
IntMinMaxBoundsPredicate