Package net.fabricmc.fabric.api.loot.v2
Enum Class LootTableSource
- All Implemented Interfaces:
Serializable
,Comparable<LootTableSource>
,Constable
Describes where a loot table has been loaded from.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA loot table loaded from an external data pack.A loot table loaded from mods' bundled resources.A loot table created inLootTableEvents.REPLACE
.A loot table loaded from the default data pack. -
Method Summary
Modifier and TypeMethodDescriptionboolean
Returns whether this loot table source is builtin and bundled in the vanilla or mod resources.static LootTableSource
Returns the enum constant of this class with the specified name.static LootTableSource[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VANILLA
A loot table loaded from the default data pack. -
MOD
A loot table loaded from mods' bundled resources.This includes the additional builtin data packs registered by mods with Fabric Resource Loader.
-
DATA_PACK
A loot table loaded from an external data pack. -
REPLACED
A loot table created inLootTableEvents.REPLACE
.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
isBuiltin
public boolean isBuiltin()Returns whether this loot table source is builtin and bundled in the vanilla or mod resources.- Returns:
true
if builtin,false
otherwise
-