Uses of Enum Class
tech.guilhermekaua.spigotboot.config.binding.NamingStrategy
Packages that use NamingStrategy
Package
Description
-
Uses of NamingStrategy in tech.guilhermekaua.spigotboot.config.binding
Methods in tech.guilhermekaua.spigotboot.config.binding that return NamingStrategyModifier and TypeMethodDescriptionstatic NamingStrategyReturns the enum constant of this class with the specified name.static NamingStrategy[]NamingStrategy.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in tech.guilhermekaua.spigotboot.config.binding with parameters of type NamingStrategyModifier and TypeMethodDescription<T> @NotNull BindingResult<T>Binder.bind(@NotNull ConfigNode node, @NotNull Class<T> type, @NotNull NamingStrategy namingStrategy) Binds a config node to a new instance of the target type.<T> @NotNull BindingResult<T>Binder.bind(@NotNull ConfigNode node, T instance, @NotNull NamingStrategy namingStrategy) Binds config values onto an existing instance (field injection only).<T> @NotNull BindingResult<T>DefaultBinder.bind(@NotNull ConfigNode node, @NotNull Class<T> type, @NotNull NamingStrategy namingStrategy) <T> @NotNull BindingResult<T>DefaultBinder.bind(@NotNull ConfigNode node, T instance, @NotNull NamingStrategy namingStrategy) <T> voidBinder.unbind(T object, @NotNull MutableConfigNode node, @NotNull NamingStrategy namingStrategy) Serializes an object to a config node.<T> voidDefaultBinder.unbind(T object, @NotNull MutableConfigNode node, @NotNull NamingStrategy namingStrategy) -
Uses of NamingStrategy in tech.guilhermekaua.spigotboot.config.folder
Constructors in tech.guilhermekaua.spigotboot.config.folder with parameters of type NamingStrategyModifierConstructorDescriptionFolderConfigEntry(@NotNull Class<T> itemType, @NotNull FolderConfig annotation, @NotNull BootPlugin plugin, @NotNull YamlConfigLoader loader, @NotNull Binder binder, @NotNull NamingStrategy namingStrategy) Creates a new folder config entry.