Uses of Interface
me.a8kj.config.file.operation.ConfigOperation
Packages that use ConfigOperation
Package
Description
-
Uses of ConfigOperation in me.a8kj.config
Methods in me.a8kj.config that return ConfigOperation -
Uses of ConfigOperation in me.a8kj.config.context
Method parameters in me.a8kj.config.context with type arguments of type ConfigOperationModifier and TypeMethodDescriptionConfigExecutionContext.execute(Function<CRUDOperations<K>, ConfigOperation<K>> task) Executes a specific operation within this context. -
Uses of ConfigOperation in me.a8kj.config.context.impl
Method parameters in me.a8kj.config.context.impl with type arguments of type ConfigOperationModifier and TypeMethodDescriptionBasicConfigExecutionContext.execute(Function<CRUDOperations<K>, ConfigOperation<K>> task) -
Uses of ConfigOperation in me.a8kj.config.file
Methods in me.a8kj.config.file that return ConfigOperationModifier and TypeMethodDescriptionBaseConfig.create()Creates aConfigOperationfor initializing the configuration file.BaseConfig.delete()Creates aConfigOperationfor deleting the file and clearing memory.abstract ConfigOperation<K> BaseConfig.read()BasicBukkitConfig.read()Creates aConfigOperationto read data from a YAML file into memory.abstract ConfigOperation<K> BaseConfig.update()BasicBukkitConfig.update()Creates aConfigOperationto save the current memory state back to a YAML file. -
Uses of ConfigOperation in me.a8kj.config.file.impl
Methods in me.a8kj.config.file.impl that return ConfigOperation -
Uses of ConfigOperation in me.a8kj.config.file.operation
Methods in me.a8kj.config.file.operation with parameters of type ConfigOperationModifier and TypeMethodDescriptionvoidBasicConfigOperationExecutor.execute(ConfigOperation<K> operation) Executes a givenConfigOperationwhile managing the execution lifecycle.voidConfigOperationExecutor.execute(ConfigOperation<K> operation) Executes a single configuration operation.default voidConfigOperationExecutor.executeAll(ConfigOperation<K>... operations) Executes multiple configuration operations in the order they are provided. -
Uses of ConfigOperation in me.a8kj.config.file.operation.impl
Methods in me.a8kj.config.file.operation.impl that return ConfigOperationModifier and TypeMethodDescriptionCreatableConfig.create()Provides the operation logic for creating the configuration.DeletableConfig.delete()Provides the operation logic for deleting the configuration.ReadableConfig.read()Provides the operation logic for reading the configuration data.UpdatableConfig.update()Provides the operation logic for updating (saving) the configuration data.