com.twitter

util

package util

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. util
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class ImmutableLRU[K, V] extends AnyRef

    An immutable key/value store that evicts the least recently accessed elements to stay constrained in a maximum size bound.

  2. trait JMapWrapperLike[A, B, +Repr <: MapLike[A, B, Repr] with Map[A, B]] extends Map[A, B] with MapLike[A, B, Repr]

    A wrapper trait for java.util.Map implementations to make them behave as scala Maps.

    A wrapper trait for java.util.Map implementations to make them behave as scala Maps. This is useful if you want to have more specifically-typed wrapped objects instead of the generic maps returned by JavaConverters

  3. class LruMap[K, V] extends JMapWrapperLike[K, V, LruMap[K, V]]

    A scala Map backed by an org.apache.commons.collections.map.LRUMap

  4. class MapToSetAdapter[A] extends Set[A]

  5. class SynchronizedLruMap[K, V] extends LruMap[K, V] with SynchronizedMap[K, V]

    A synchronized scala Map backed by an org.apache.commons.collections.map.LRUMap

  6. case class JMapWrapper[A, B](underlying: Map[A, B]) extends JMapWrapperLike[A, B, JMapWrapper[A, B]] with Product with Serializable

    Annotations
    @deprecated
    Deprecated

    (Since version 2014/12/2) use scala.collection.JavaConverters instead

Value Members

  1. object ImmutableLRU

    Immutable implementation of an LRU cache.

  2. object LruMap

  3. object SetMaker

    Use guava MapMaker to create a scala Set

  4. val StorageUnitConversions: storage.type

  5. val TimeConversions: time.type

Inherited from AnyRef

Inherited from Any

Ungrouped