Uses of Interface
net.obvj.confectory.internal.helper.ConfigurationHelper
-
Packages that use ConfigurationHelper Package Description net.obvj.confectory.internal.helper This package contains classes that support data retrieval for supportedConfigurationformats.net.obvj.confectory.mapper This package groups theMapperinterface and its implementations, as well as auxiliary classes. -
-
Uses of ConfigurationHelper in net.obvj.confectory.internal.helper
Classes in net.obvj.confectory.internal.helper that implement ConfigurationHelper Modifier and Type Class Description classBasicConfigurationHelper<T>A basic, abstract Configuration Helper object providing common infrastructure for concrete implementations.classBeanConfigurationHelper<T>A Configuration Helper implementation for user-defined beans.classDocumentConfigurationHelperA generic Configuration Helper that retrieves data from an XMLDocumentusing XPath.classGenericJsonConfigurationHelper<J>A generic Configuration Helper that retrieves data from a JSON document, with JSONPath capabilities.classJsonSmartConfigurationHelperA specialized Configuration Helper that retrieves data fromnet.minidev's (json-smart)JSONObject, with JSONPath capabilities.classNullConfigurationHelper<T>A "no-op" Configuration Helper object for situations where an optionalConfigurationobject is not available.classPropertiesConfigurationHelperA specialized Configuration Helper that retrieves data from aPropertiesobject.Methods in net.obvj.confectory.internal.helper that return ConfigurationHelper Modifier and Type Method Description static <T> ConfigurationHelper<T>ConfigurationHelper. newInstance(T bean, Mapper<T> mapper)Creates a newConfigurationHelperfor the givenMapper.Constructors in net.obvj.confectory.internal.helper with parameters of type ConfigurationHelper Constructor Description NullConfigurationHelper(ConfigurationHelper<T> originalHelper)Builds aNullConfigurationHelperwith a reference to the original/expectedConfigurationHelper. -
Uses of ConfigurationHelper in net.obvj.confectory.mapper
Methods in net.obvj.confectory.mapper that return ConfigurationHelper Modifier and Type Method Description ConfigurationHelper<T>AbstractBeanMapper. configurationHelper(T bean)ConfigurationHelper<Document>DocumentMapper. configurationHelper(Document document)ConfigurationHelper<T>DummyMapper. configurationHelper(T bean)ConfigurationHelper<net.minidev.json.JSONObject>INIToJSONObjectMapper. configurationHelper(net.minidev.json.JSONObject object)ConfigurationHelper<T>INIToObjectMapper. configurationHelper(T object)ConfigurationHelper<net.minidev.json.JSONObject>JSONObjectMapper. configurationHelper(net.minidev.json.JSONObject jsonObject)ConfigurationHelper<T>Mapper. configurationHelper(T bean)Creates a newConfigurationHelperinstance recommended by thisMapper.ConfigurationHelper<Properties>PropertiesMapper. configurationHelper(Properties properties)ConfigurationHelper<T>PropertiesToObjectMapper. configurationHelper(T type)Constructor parameters in net.obvj.confectory.mapper with type arguments of type ConfigurationHelper Constructor Description DummyMapper(Function<T,ConfigurationHelper<T>> configurationHelperCreator)Creates a dummyMapperwith aConfigurationHelperfactory function.
-