Uses of Interface
com.hazelcast.config.properties.PropertyDefinition
Packages that use PropertyDefinition
Package
Description
This package contains the public API for properties defined in the XML configuration.
This package contains the public SPI for vendors and users to implement their
custom node / IP discovery strategy.
Contains the hazelcast multicast plugin classes
-
Uses of PropertyDefinition in com.hazelcast.config.properties
Classes in com.hazelcast.config.properties that implement PropertyDefinitionModifier and TypeClassDescriptionclass
Simple immutable implementation ofPropertyDefinition
for convenience of implementors. -
Uses of PropertyDefinition in com.hazelcast.spi.discovery
Methods in com.hazelcast.spi.discovery that return types with arguments of type PropertyDefinitionModifier and TypeMethodDescriptionDiscoveryStrategyFactory.getConfigurationProperties()
Returns a set of the expected configuration properties.Methods in com.hazelcast.spi.discovery with parameters of type PropertyDefinitionModifier and TypeMethodDescriptionprotected <T extends Comparable>
TAbstractDiscoveryStrategy.getOrDefault
(PropertyDefinition property, T defaultValue) Returns the value of the requestedPropertyDefinition
if available in the declarative or programmatic configuration (XML or Config API), otherwise it will return the givendefaultValue
.protected <T extends Comparable>
TAbstractDiscoveryStrategy.getOrDefault
(String prefix, PropertyDefinition property, T defaultValue) Returns the value of the requestedPropertyDefinition
if available in the declarative or programmatic configuration (XML or Config API), can be found in the system's environment, or passed as a JVM property.protected <T extends Comparable>
TAbstractDiscoveryStrategy.getOrNull
(PropertyDefinition property) Returns the value of the requestedPropertyDefinition
if available in the declarative or programmatic configuration (XML or Config API), otherwise it will returnnull
.protected <T extends Comparable>
TAbstractDiscoveryStrategy.getOrNull
(String prefix, PropertyDefinition property) Returns the value of the requestedPropertyDefinition
if available in the declarative or programmatic configuration (XML or Config API), can be found in the system's environment, or passed as a JVM property. -
Uses of PropertyDefinition in com.hazelcast.spi.discovery.multicast
Fields in com.hazelcast.spi.discovery.multicast declared as PropertyDefinitionModifier and TypeFieldDescriptionstatic final PropertyDefinition
MulticastProperties.GROUP
Property used to define zones for node filtering.static final PropertyDefinition
MulticastProperties.PORT
Property used to define multicast port.static final PropertyDefinition
MulticastProperties.SAFE_SERIALIZATION
Property which determines if Java Serialization is used (false
) or rather the safer and portable one (true
).Methods in com.hazelcast.spi.discovery.multicast that return types with arguments of type PropertyDefinition