Class JacksonConfigurationLoader.Builder
- java.lang.Object
-
- org.spongepowered.configurate.loader.AbstractConfigurationLoader.Builder<JacksonConfigurationLoader.Builder,JacksonConfigurationLoader>
-
- org.spongepowered.configurate.jackson.JacksonConfigurationLoader.Builder
-
- Enclosing class:
- JacksonConfigurationLoader
public static final class JacksonConfigurationLoader.Builder extends AbstractConfigurationLoader.Builder<JacksonConfigurationLoader.Builder,JacksonConfigurationLoader>
Builds aJacksonConfigurationLoader
.- Since:
- 4.0.0
-
-
Field Summary
-
Fields inherited from class org.spongepowered.configurate.loader.AbstractConfigurationLoader.Builder
defaultOptions, headerMode, sink, source
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JacksonConfigurationLoader
build()
Builds the loader.JsonFactoryBuilder
factoryBuilder()
Gets theJsonFactory
used to configure the implementation.FieldValueSeparatorStyle
fieldValueSeparatorStyle()
Gets the field value separator style to be used by the built loader.JacksonConfigurationLoader.Builder
fieldValueSeparatorStyle(FieldValueSeparatorStyle style)
Sets the field value separator style the resultant loader should use.int
indent()
Gets the level of indentation to be used by the resultant loader.JacksonConfigurationLoader.Builder
indent(int indent)
Sets the level of indentation the resultant loader should use.-
Methods inherited from class org.spongepowered.configurate.loader.AbstractConfigurationLoader.Builder
defaultOptions, defaultOptions, defaultOptions, file, headerMode, headerMode, path, sink, sink, source, source, url
-
-
-
-
Method Detail
-
factoryBuilder
public JsonFactoryBuilder factoryBuilder()
Gets theJsonFactory
used to configure the implementation.- Returns:
- the json factory
- Since:
- 4.0.0
-
indent
public JacksonConfigurationLoader.Builder indent(int indent)
Sets the level of indentation the resultant loader should use.- Parameters:
indent
- the indent level- Returns:
- this builder (for chaining)
- Since:
- 4.0.0
-
indent
public int indent()
Gets the level of indentation to be used by the resultant loader.- Returns:
- the indent level
- Since:
- 4.0.0
-
fieldValueSeparatorStyle
public JacksonConfigurationLoader.Builder fieldValueSeparatorStyle(FieldValueSeparatorStyle style)
Sets the field value separator style the resultant loader should use.- Parameters:
style
- the style- Returns:
- this builder (for chaining)
- Since:
- 4.0.0
-
fieldValueSeparatorStyle
public FieldValueSeparatorStyle fieldValueSeparatorStyle()
Gets the field value separator style to be used by the built loader.- Returns:
- the style
- Since:
- 4.0.0
-
build
public JacksonConfigurationLoader build()
Description copied from class:AbstractConfigurationLoader.Builder
Builds the loader.- Specified by:
build
in classAbstractConfigurationLoader.Builder<JacksonConfigurationLoader.Builder,JacksonConfigurationLoader>
- Returns:
- a new loader
-
-