Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getLowerBoundary (0.19 sec)

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

         */
        @Nullable
        Boundary getUpperBoundary();
    
        /**
         * Returns the lower boundary of this range, or {@code null} if none.
         */
        @Nullable
        Boundary getLowerBoundary();
    
        /**
         * Returns a string representation of this version range
         * @return the string representation of this version range
         */
        @Nonnull
        String asString();
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelVersionParser.java

                    public boolean isInclusive() {
                        return bound.isInclusive();
                    }
                };
            }
    
            @Override
            public Boundary getLowerBoundary() {
                org.eclipse.aether.version.VersionRange.Bound bound = delegate.getLowerBound();
                if (bound == null) {
                    return null;
                }
                return new Boundary() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top