AnyLogic
Expand
Font size
All Implemented Interfaces:
Serializable

public class PalletRackLocation
extends Object
implements Serializable
Location in PalletRack
See Also:
Serialized Form

Field Summary

Modifier and TypeFieldDescription
intlevel
Level (0, 1, ...)
intposition
Position in row (0, 1, ...)
introw
The number of pallet rack (0 or 1).

Constructor Summary

ConstructorDescription
PalletRackLocation()
Default constructor
PalletRackLocation(int row, int position, int level)
Constructor initializing the fields
PalletRackLocation(PalletRackLocation location)
Copy constructor

Method Summary

Modifier and TypeMethodDescription
StringtoString() 

Methods inherited from class java.lang.Object

equals, getClass, hashCode, notify, notifyAll, wait, wait, wait

Field Details

row

public int row
The number of pallet rack (0 or 1). Used in two-row pallet racks (0 = left row, 1 = right row).
If there is only one pallet rack, this should be 0.

position

public int position
Position in row (0, 1, ...)

level

public int level
Level (0, 1, ...)

Constructor Details

PalletRackLocation

public PalletRackLocation()
Default constructor

PalletRackLocation

public PalletRackLocation(int row,
 int position,
 int level)
Constructor initializing the fields

PalletRackLocation

public PalletRackLocation(PalletRackLocation location)
Copy constructor
Parameters:
location -

Method Details

toString

public String toString()
Overrides:
toString in class Object