Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getLowerBoundary (0.22 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();
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/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() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.4K bytes
    - Viewed (0)
Back to top