ItemQuery |
ItemQuery.differenceInValueLessThan(int difference) |
Filters items based on the difference in price (between the high alchemy
price and the current price).
|
ItemQuery |
ItemQuery.filterContains(java.lang.String... substrings) |
Filters items by their name, including only those whose names contain any
of the specified substrings.
|
ItemQuery |
ItemQuery.nonPlaceHolder() |
Filters out placeholder items by checking their quantity.
|
ItemQuery |
ItemQuery.omitContains(java.lang.String substring) |
Filters out items whose names contain a specific substring.
|
ItemQuery |
ItemQuery.onlyNoted() |
Filters items to include only those that are noted.
|
ItemQuery |
ItemQuery.onlyStackable() |
Filters items to include only stackable items.
|
ItemQuery |
ItemQuery.onlyUnnoted() |
Filters items to include only those that are unnoted.
|
ItemQuery |
ItemQuery.priceOver(int price) |
Filters items by high alchemy price, including only those with a price
greater than or equal to the specified value.
|
ItemQuery |
ItemQuery.quantityGreaterThan(int quantity) |
Filters items based on their quantity.
|
ItemQuery |
ItemQuery.tradeable() |
Filters the items to include only those that are tradeable.
|
ItemQuery |
ItemQuery.withSlot(int idx) |
Filters items by their inventory slot index.
|