Package org.bukkit.loot
Enum LootTables
- All Implemented Interfaces:
Serializable
,Comparable<LootTables>
,Constable
,Keyed
public enum LootTables extends Enum<LootTables> implements Keyed
This enum holds a list of all known
LootTable
s offered by Mojang.
This list is not guaranteed to be accurate in future versions.
See the
Minecraft Wiki for more information on loot tables.-
Nested Class Summary
-
Enum Constant Summary
-
Method Summary
Modifier and Type Method Description NamespacedKey
getKey()
Return the namespaced identifier for this object.LootTable
getLootTable()
Get theLootTable
corresponding to this constant.static LootTables
valueOf(String name)
Returns the enum constant of this type with the specified name.static LootTables[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
EMPTY
-
ABANDONED_MINESHAFT
-
BURIED_TREASURE
-
DESERT_PYRAMID
-
END_CITY_TREASURE
-
IGLOO_CHEST
-
JUNGLE_TEMPLE
-
JUNGLE_TEMPLE_DISPENSER
-
NETHER_BRIDGE
-
PILLAGER_OUTPOST
-
BASTION_TREASURE
-
BASTION_OTHER
-
BASTION_BRIDGE
-
BASTION_HOGLIN_STABLE
-
RUINED_PORTAL
-
SHIPWRECK_MAP
-
SHIPWRECK_SUPPLY
-
SHIPWRECK_TREASURE
-
SIMPLE_DUNGEON
-
SPAWN_BONUS_CHEST
-
STRONGHOLD_CORRIDOR
-
STRONGHOLD_CROSSING
-
STRONGHOLD_LIBRARY
-
UNDERWATER_RUIN_BIG
-
UNDERWATER_RUIN_SMALL
-
VILLAGE_ARMORER
-
VILLAGE_BUTCHER
-
VILLAGE_CARTOGRAPHER
-
VILLAGE_DESERT_HOUSE
-
VILLAGE_FISHER
-
VILLAGE_FLETCHER
-
VILLAGE_MASON
-
VILLAGE_PLAINS_HOUSE
-
VILLAGE_SAVANNA_HOUSE
-
VILLAGE_SHEPHERD
-
VILLAGE_SNOWY_HOUSE
-
VILLAGE_TAIGA_HOUSE
-
VILLAGE_TANNERY
-
VILLAGE_TEMPLE
-
VILLAGE_TOOLSMITH
-
VILLAGE_WEAPONSMITH
-
WOODLAND_MANSION
-
ARMOR_STAND
-
BAT
-
BLAZE
-
CAT
-
CAVE_SPIDER
-
CHICKEN
-
COD
-
COW
-
CREEPER
-
DOLPHIN
-
DONKEY
-
DROWNED
-
ELDER_GUARDIAN
-
ENDERMAN
-
ENDERMITE
-
ENDER_DRAGON
-
EVOKER
-
FOX
-
GHAST
-
GIANT
-
GUARDIAN
-
HORSE
-
HUSK
-
ILLUSIONER
-
IRON_GOLEM
-
LLAMA
-
MAGMA_CUBE
-
MOOSHROOM
-
MULE
-
OCELOT
-
PANDA
-
PARROT
-
PHANTOM
-
PIG
-
PILLAGER
-
POLAR_BEAR
-
PUFFERFISH
-
RABBIT
-
RAVAGER
-
SALMON
-
SHULKER
-
SILVERFISH
-
SKELETON
-
SKELETON_HORSE
-
SLIME
-
SNOW_GOLEM
-
SPIDER
-
SQUID
-
STRAY
-
TRADER_LLAMA
-
TROPICAL_FISH
-
TURTLE
-
VEX
-
VILLAGER
-
VINDICATOR
-
WANDERING_TRADER
-
WITCH
-
WITHER
-
WITHER_SKELETON
-
WOLF
-
ZOMBIE
-
ZOMBIE_HORSE
-
ZOMBIE_PIGMAN
-
ZOMBIE_VILLAGER
-
ARMORER_GIFT
-
BUTCHER_GIFT
-
CARTOGRAPHER_GIFT
-
CAT_MORNING_GIFT
-
CLERIC_GIFT
-
FARMER_GIFT
-
FISHERMAN_GIFT
-
FISHING
-
FISHING_FISH
-
FISHING_JUNK
-
FISHING_TREASURE
-
FLETCHER_GIFT
-
LEATHERWORKER_GIFT
-
LIBRARIAN_GIFT
-
MASON_GIFT
-
SHEPHERD_GIFT
-
TOOLSMITH_GIFT
-
WEAPONSMITH_GIFT
-
PIGLIN_BARTERING
-
SHEEP
-
SHEEP_BLACK
-
SHEEP_BLUE
-
SHEEP_BROWN
-
SHEEP_CYAN
-
SHEEP_GRAY
-
SHEEP_GREEN
-
SHEEP_LIGHT_BLUE
-
SHEEP_LIGHT_GRAY
-
SHEEP_LIME
-
SHEEP_MAGENTA
-
SHEEP_ORANGE
-
SHEEP_PINK
-
SHEEP_PURPLE
-
SHEEP_RED
-
SHEEP_WHITE
-
SHEEP_YELLOW
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getKey
Description copied from interface:Keyed
Return the namespaced identifier for this object. -
getLootTable
Get theLootTable
corresponding to this constant. This is equivalent to callingBukkit.getLootTable(this.getKey());
.- Returns:
- the associated LootTable
-