Class WildcardConfigPatternMatcher

java.lang.Object
com.hazelcast.config.matcher.WildcardConfigPatternMatcher
All Implemented Interfaces:
ConfigPatternMatcher

public class WildcardConfigPatternMatcher extends Object implements ConfigPatternMatcher
This ConfigPatternMatcher supports a simplified wildcard matching. See "Config.md ## Using Wildcard" for details about the syntax options.

Throws InvalidConfigurationException is multiple configurations are found.

  • Constructor Details

    • WildcardConfigPatternMatcher

      public WildcardConfigPatternMatcher()
  • Method Details

    • matches

      public String matches(Iterable<String> configPatterns, String itemName) throws InvalidConfigurationException
      Description copied from interface: ConfigPatternMatcher
      Returns the best match for an item name out of a list of configuration patterns.
      Specified by:
      matches in interface ConfigPatternMatcher
      Parameters:
      configPatterns - list of known configuration patterns
      itemName - item name to match
      Returns:
      a key of configPatterns which matches the item name or null if there is no match
      Throws:
      InvalidConfigurationException - if ambiguous configurations are found
    • matches

      public boolean matches(String pattern, String itemName)
      This method is public to be accessible by InstancePermission.
      Parameters:
      pattern - configuration pattern to match with
      itemName - item name to match
      Returns:
      true if itemName matches, false otherwise
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object