Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fordi (0.12 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Obtain the {@link DependencyScope} from the specified {@code id}.
         * <p>
         * Shortcut for {@code DependencyScope.forId(...)}.
         *
         * @see org.apache.maven.api.DependencyScope#forId(String)
         */
        @Nonnull
        DependencyScope requireDependencyScope(@Nonnull String id);
    
        /**
         * Obtain the {@link PathScope} from the specified {@code id}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

        private static final Map<String, DependencyScope> IDS = Collections.unmodifiableMap(
                Stream.of(DependencyScope.values()).collect(Collectors.toMap(s -> s.id, s -> s)));
    
        public static DependencyScope forId(String id) {
            return IDS.get(id);
        }
    
        private final String id;
        private final boolean transitive;
    
        DependencyScope(String id, boolean transitive) {
            this.id = id;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            return getService(ProjectScopeRegistry.class).require(id);
        }
    
        @Override
        public DependencyScope requireDependencyScope(String id) {
            return DependencyScope.forId(nonNull(id, "id"));
        }
    
        @Override
        public PathScope requirePathScope(String id) {
            return getService(PathScopeRegistry.class).require(id);
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            return getService(ProjectScopeRegistry.class).require(id);
        }
    
        @Override
        public DependencyScope requireDependencyScope(String id) {
            return DependencyScope.forId(nonNull(id, "id"));
        }
    
        @Override
        public PathScope requirePathScope(String id) {
            return getService(PathScopeRegistry.class).require(id);
        }
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top