Interface ConversionResult
-
@Immutable public interface ConversionResult
A possible result of a conversion lookup.- Since:
- 2.0.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classConversionResult.BuilderBuilder for a conversion result.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static ConversionResult.Builderbuilder()Create a new builder for a conversion result.net.kyori.adventure.text.Componentdescription()A short description of the data that will be converted.ProtoDataStore<?>store()The data store, configured based on the discovered environment but not yet initialized.
-
-
-
Method Detail
-
builder
static ConversionResult.Builder builder()
Create a new builder for a conversion result.- Returns:
- new builder
- Since:
- 2.0.0
-
description
net.kyori.adventure.text.Component description()
A short description of the data that will be converted.- Returns:
- conversion description
- Since:
- 2.0.0
-
store
ProtoDataStore<?> store()
The data store, configured based on the discovered environment but not yet initialized.- Returns:
- convertible data store
- Since:
- 2.0.0
-
-