Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExactMatcher (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/toolchain/RequirementMatcherFactory.java

            return new ExactMatcher(provideValue);
        }
    
        public static RequirementMatcher createVersionMatcher(String provideValue) {
            return new VersionMatcher(provideValue);
        }
    
        private static final class ExactMatcher implements RequirementMatcher {
    
            private String provides;
    
            private ExactMatcher(String provides) {
                this.provides = provides;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
Back to top