Class RegexConfigPatternMatcher

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      int hashCode()  
      java.lang.String matches​(java.lang.Iterable<java.lang.String> configPatterns, java.lang.String itemName)
      Returns the best match for an item name out of a list of configuration patterns.
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RegexConfigPatternMatcher

        public RegexConfigPatternMatcher()
      • RegexConfigPatternMatcher

        public RegexConfigPatternMatcher​(int flags)
    • Method Detail

      • matches

        public java.lang.String matches​(java.lang.Iterable<java.lang.String> configPatterns,
                                        java.lang.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
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object