# LbtItem ## LbtItem Creates and initializes an LbtItem object. ```java public LbtItem(int slot, boolean isUsed); ``` ```{list-table} :align: left :class: list-table * - Parameter Name - In/Out - Type - Description * - slot - In - int - Index * - isUsed - In - boolean - true: Use false: Do not use ``` **Sample Code**: ```java LbtItem lbtItem = new LbtItem(1, true); ``` --- ## getSlot Gets the index. ```java public int getSlot(); ``` ```{list-table} :align: left :class: list-table * - Parameter Name - In/Out - Type - Description * - Return Value - Out - int - Index ``` **Sample Code**: ```java int slot = lbtItem.getSlot(); ``` --- ## isUsed Gets whether to use or not. ```java public boolean isUsed(); ``` ```{list-table} :align: left :class: list-table * - Parameter Name - In/Out - Type - Description * - Return Value - Out - boolean - true: Use false: Do not use ``` **Sample Code**: ```java boolean isUse = lbtItem.isUsed(); ```