Class PluginLootReceived
- java.lang.Object
-
- net.runelite.client.plugins.loottracker.PluginLootReceived
-
public final class PluginLootReceived extends Object
Event for plugins to publish new loot to the loot tracker
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PluginLootReceived.PluginLootReceivedBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PluginLootReceived.PluginLootReceivedBuilder
builder()
boolean
equals(Object o)
int
getAmount()
int
getCombatLevel()
@NonNull Collection<ItemStack>
getItems()
Object
getMetadata()
@NonNull String
getName()
@NonNull Plugin
getSource()
@NonNull net.runelite.http.api.loottracker.LootRecordType
getType()
int
hashCode()
String
toString()
-
-
-
Method Detail
-
builder
public static PluginLootReceived.PluginLootReceivedBuilder builder()
-
getSource
@NonNull public @NonNull Plugin getSource()
-
getName
@NonNull public @NonNull String getName()
-
getCombatLevel
public int getCombatLevel()
-
getType
@NonNull public @NonNull net.runelite.http.api.loottracker.LootRecordType getType()
-
getItems
@NonNull public @NonNull Collection<ItemStack> getItems()
-
getAmount
public int getAmount()
-
getMetadata
@Nullable public Object getMetadata()
-
-