Uses of Class
org.springframework.data.gemfire.util.PropertiesBuilder
Packages that use PropertiesBuilder
-
Uses of PropertiesBuilder in org.springframework.data.gemfire.util
Methods in org.springframework.data.gemfire.util that return PropertiesBuilderModifier and TypeMethodDescriptionPropertiesBuilder.add(Properties properties) Null-safe method to add all thePropertiesto this builder.PropertiesBuilder.add(PropertiesBuilder builder) Null-safe method to add all thePropertiesfrom the providedPropertiesBuilderto this builder.static PropertiesBuilderPropertiesBuilder.create()Factory method used to create a defaultPropertiesBuilderinstance.static PropertiesBuilderPropertiesBuilder.from(InputStream in) Constructs a new instance ofPropertiesBuilderinitialized with all properties from the givenInputStream.static PropertiesBuilderConstructs a new isntance ofPropertiesBuilderinitialized with all properties from the givenReader.static PropertiesBuilderPropertiesBuilder.from(Properties properties) Factory method used to create an instance ofPropertiesBuilderinitialized with the givenProperties.static PropertiesBuilderPropertiesBuilder.fromXml(InputStream xml) Constructs a new instance ofPropertiesBuilderinitialized with all properties from the givenInputStreamin XML format.PropertiesBuilder.setProperty(String name, Object value) Sets a property with given name to the specified value.PropertiesBuilder.setProperty(String name, Object[] values) Sets the named property to the given array of object values.PropertiesBuilder.setProperty(String name, String value) Sets a property with the given name to the specifiedStringvalue.PropertiesBuilder.setPropertyIfNotDefault(String name, Object value, T defaultValue) Sets the named property to the given value if the defaultValue is not null and value is not equal to defaultValue.PropertiesBuilder.unsetProperty(String name) Un-sets the named property.Methods in org.springframework.data.gemfire.util with parameters of type PropertiesBuilderModifier and TypeMethodDescriptionPropertiesBuilder.add(PropertiesBuilder builder) Null-safe method to add all thePropertiesfrom the providedPropertiesBuilderto this builder.Constructors in org.springframework.data.gemfire.util with parameters of type PropertiesBuilderModifierConstructorDescriptionPropertiesBuilder(PropertiesBuilder builder) Constructs a new instance ofPropertiesBuilderinitialized with the givenPropertiesBuilderproviding the defaultPropertiesfor this builder.