Uses of Interface
org.apache.logging.log4j.util.PropertySource
-
Packages that use PropertySource Package Description org.apache.logging.log4j.util -
-
Uses of PropertySource in org.apache.logging.log4j.util
Classes in org.apache.logging.log4j.util that implement PropertySource Modifier and Type Class Description classEnvironmentPropertySourcePropertySource implementation that uses environment variables as a source.classPropertiesPropertySourcePropertySource backed by aPropertiesinstance.classPropertyFilePropertySourcePropertySource backed by a properties file.classSystemPropertiesPropertySourcePropertySource backed by the current system properties.Fields in org.apache.logging.log4j.util declared as PropertySource Modifier and Type Field Description private static PropertySourceEnvironmentPropertySource. INSTANCEprivate static PropertySourceSystemPropertiesPropertySource. INSTANCEFields in org.apache.logging.log4j.util with type parameters of type PropertySource Modifier and Type Field Description private java.lang.ThreadLocal<PropertySource>PropertiesUtil.Environment. CURRENT_PROPERTY_SOURCEprivate java.util.Set<PropertySource>PropertiesUtil.Environment. sourcesMethods in org.apache.logging.log4j.util that return PropertySource Modifier and Type Method Description static PropertySourceEnvironmentPropertySource. provider()Method used by Java 9+ to instantiate providersstatic PropertySourceSystemPropertiesPropertySource. provider()Method used by Java 9+ to instantiate providersMethods in org.apache.logging.log4j.util with parameters of type PropertySource Modifier and Type Method Description voidPropertiesUtil. addPropertySource(PropertySource propertySource)Allows aPropertySourceto be added afterPropertiesUtilhas been created.private voidPropertiesUtil.Environment. addPropertySource(PropertySource propertySource)intPropertySource.Comparator. compare(PropertySource o1, PropertySource o2)private voidPropertiesUtil.Environment. removePropertySource(PropertySource propertySource)voidPropertiesUtil. removePropertySource(PropertySource propertySource)Removes aPropertySource.private booleanPropertiesUtil.Environment. sourceContainsProperty(PropertySource source, java.lang.String key)private java.lang.StringPropertiesUtil.Environment. sourceGetProperty(PropertySource source, java.lang.String key)Constructors in org.apache.logging.log4j.util with parameters of type PropertySource Constructor Description Environment(PropertySource propertySource)PropertiesUtil(PropertySource source)Constructs a PropertiesUtil for a give property source as source of additional properties.
-