Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Part (0.72 sec)

  1. guava/src/com/google/common/collect/BoundType.java

     * bound simply does not exist.
     *
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public enum BoundType {
      /** The endpoint value <i>is not</i> considered part of the set ("exclusive"). */
      OPEN(false),
      CLOSED(true);
    
      final boolean inclusive;
    
      BoundType(boolean inclusive) {
        this.inclusive = inclusive;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Sep 20 15:57:47 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/BoundType.java

     * bound simply does not exist.
     *
     * @since 10.0
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public enum BoundType {
      /** The endpoint value <i>is not</i> considered part of the set ("exclusive"). */
      OPEN(false),
      CLOSED(true);
    
      final boolean inclusive;
    
      BoundType(boolean inclusive) {
        this.inclusive = inclusive;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Sep 20 15:57:47 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top