Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for typeAsUpperBound (0.27 sec)

  1. android/guava/src/com/google/common/collect/Cut.java

      final C endpoint;
    
      Cut(C endpoint) {
        this.endpoint = endpoint;
      }
    
      abstract boolean isLessThan(C value);
    
      abstract BoundType typeAsLowerBound();
    
      abstract BoundType typeAsUpperBound();
    
      abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain);
    
      abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Cut.java

      final C endpoint;
    
      Cut(C endpoint) {
        this.endpoint = endpoint;
      }
    
      abstract boolean isLessThan(C value);
    
      abstract BoundType typeAsLowerBound();
    
      abstract BoundType typeAsUpperBound();
    
      abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain);
    
      abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Range.java

       *
       * @throws IllegalStateException if this range is unbounded above (that is, {@link
       *     #hasUpperBound()} returns {@code false})
       */
      public BoundType upperBoundType() {
        return upperBound.typeAsUpperBound();
      }
    
      /**
       * Returns {@code true} if this range is of the form {@code [v..v)} or {@code (v..v]}. (This does
       * not encompass ranges of the form {@code (v..v)}, because such ranges are <i>invalid</i> and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Range.java

       *
       * @throws IllegalStateException if this range is unbounded above (that is, {@link
       *     #hasUpperBound()} returns {@code false})
       */
      public BoundType upperBoundType() {
        return upperBound.typeAsUpperBound();
      }
    
      /**
       * Returns {@code true} if this range is of the form {@code [v..v)} or {@code (v..v]}. (This does
       * not encompass ranges of the form {@code (v..v)}, because such ranges are <i>invalid</i> and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top