httpcore5/src/main/java/org/apache/hc/core5/http/protocol/RequestHandlerRegistry.java [71:84]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    static <T> LookupRegistry<T> newMatcher(final UriPatternType type) {
        if (type == null) {
            return new UriPatternMatcher<>();
        }
        switch (type) {
            case REGEX:
                return new UriRegexMatcher<>();
            case URI_PATTERN_IN_ORDER:
                return new UriPatternOrderedMatcher<>();
            case URI_PATTERN:
            default:
                return new UriPatternMatcher<>();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



httpcore5/src/main/java/org/apache/hc/core5/http/protocol/UriPatternType.java [41:54]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static <T> LookupRegistry<T> newMatcher(final UriPatternType type) {
        if (type == null) {
            return new UriPatternMatcher<>();
        }
        switch (type) {
        case REGEX:
            return new UriRegexMatcher<>();
        case URI_PATTERN_IN_ORDER:
            return new UriPatternOrderedMatcher<>();
        case URI_PATTERN:
        default:
            return new UriPatternMatcher<>();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



