Uses of Class
com.google.common.collect.BoundType

Packages that use BoundType
com.google.common.collect This package contains generic collection interfaces and implementations, and other utilities for working with collections. 
 

Uses of BoundType in com.google.common.collect
 

Methods in com.google.common.collect that return BoundType
 BoundType Range.lowerBoundType()
          Returns the type of this range's lower bound: CLOSED if the range includes its lower endpoint, OPEN if it does not.
 BoundType Range.upperBoundType()
          Returns the type of this range's upper bound: CLOSED if the range includes its upper endpoint, OPEN if it does not.
static BoundType BoundType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static BoundType[] BoundType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.google.common.collect with parameters of type BoundType
static
<C extends Comparable<?>>
Range<C>
Ranges.downTo(C endpoint, BoundType boundType)
          Returns a range from the given endpoint, which may be either inclusive (closed) or exclusive (open), with no upper bound.
abstract  Range<C> ContiguousSet.range(BoundType lowerBoundType, BoundType upperBoundType)
          Returns the minimal range with the given boundary types for which all values in this set are contained within the range.
static
<C extends Comparable<?>>
Range<C>
Ranges.range(C lower, BoundType lowerType, C upper, BoundType upperType)
          Returns a range that contains any value from lower to upper, where each endpoint may be either inclusive (closed) or exclusive (open).
static
<C extends Comparable<?>>
Range<C>
Ranges.upTo(C endpoint, BoundType boundType)
          Returns a range with no lower bound up to the given endpoint, which may be either inclusive (closed) or exclusive (open).
 



Copyright © 2010-2011. All Rights Reserved.