Interface VolumeValuesBIType
- All Superinterfaces:
VolumeSizeValuesBIType
- All Known Subinterfaces:
PVolumeBIType<S>,VolumeBIType
public interface VolumeValuesBIType extends VolumeSizeValuesBIType
A volume with BigInteger coordinates.
The coordinates of the volume are given in half-closed form. That
is, minimumX() refers to the minimum inclusive value on the X
axis, and maximumX() refers to the maximum exclusive value on
the X axis. Likewise for the Y and Z axes.
-
Method Summary
Modifier and Type Method Description java.math.BigIntegermaximumX()java.math.BigIntegermaximumY()java.math.BigIntegermaximumZ()java.math.BigIntegerminimumX()java.math.BigIntegerminimumY()java.math.BigIntegerminimumZ()default java.math.BigIntegersizeX()default java.math.BigIntegersizeY()default java.math.BigIntegersizeZ()
-
Method Details
-
minimumX
@Parameter(order=0) java.math.BigInteger minimumX()- Returns:
- The value on the X axis of the minimum edge of the box (inclusive)
-
maximumX
@Parameter(order=1) java.math.BigInteger maximumX()- Returns:
- The value on the X axis of the maximum edge of the box (exclusive)
-
minimumY
@Parameter(order=2) java.math.BigInteger minimumY()- Returns:
- The value on the Y axis of the minimum edge of the box (inclusive)
-
maximumY
@Parameter(order=3) java.math.BigInteger maximumY()- Returns:
- The value on the Y axis of the maximum edge of the box (exclusive)
-
minimumZ
@Parameter(order=4) java.math.BigInteger minimumZ()- Returns:
- The value on the Z axis of the minimum edge of the box (inclusive)
-
maximumZ
@Parameter(order=5) java.math.BigInteger maximumZ()- Returns:
- The value on the Z axis of the maximum edge of the box (exclusive)
-
sizeX
default java.math.BigInteger sizeX()- Specified by:
sizeXin interfaceVolumeSizeValuesBIType- Returns:
- The size of the area on the X axis
-
sizeY
default java.math.BigInteger sizeY()- Specified by:
sizeYin interfaceVolumeSizeValuesBIType- Returns:
- The size of the area on the Y axis
-
sizeZ
default java.math.BigInteger sizeZ()- Specified by:
sizeZin interfaceVolumeSizeValuesBIType- Returns:
- The size of the area on the Z axis
-