Package net.fabricmc.fabric.api.loot.v3
Enum Class LootTableSource
- All Implemented Interfaces:
- Serializable,- Comparable<LootTableSource>,- Constable
Describes where a loot table has been loaded from.
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum 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 SummaryModifier and TypeMethodDescriptionbooleanReturns whether this loot table source is builtin and bundled in the vanilla or mod resources.static LootTableSourceReturns 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- 
VANILLAA loot table loaded from the default data pack.
- 
MODA loot table loaded from mods' bundled resources.This includes the additional builtin data packs registered by mods with Fabric Resource Loader. 
- 
DATA_PACKA loot table loaded from an external data pack.
- 
REPLACEDA loot table created inLootTableEvents.REPLACE.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
isBuiltinpublic boolean isBuiltin()Returns whether this loot table source is builtin and bundled in the vanilla or mod resources.- Returns:
- trueif builtin,- falseotherwise
 
 
-