Module net.kyori.adventure.api
Package net.kyori.adventure.text.event
Interface DataComponentValueConverterRegistry.Provider
- Enclosing class:
DataComponentValueConverterRegistry
@NonExtendable
@Internal
@PlatformAPI
public static interface DataComponentValueConverterRegistry.Provider
A provider for data component value converters.
- Since:
- 4.17.0
-
Method Summary
Modifier and TypeMethodDescriptionReturn conversions available from this provider.id()An identifier for this provider.
-
Method Details
-
id
Key id()An identifier for this provider.- Returns:
- the provider id
- Since:
- 4.17.0
-
conversions
Iterable<DataComponentValueConverterRegistry.Conversion<?,?>> conversions()Return conversions available from this provider.Conversions may only be queried once at application initialization, so changes to the result of this method may not have any effect.
- Returns:
- the conversions available
- Since:
- 4.17.0
-