Object

com.rklaehn.persistentsummary

PersistentSummary

Related Doc: package persistentsummary

Permalink

object PersistentSummary

Creates persistent summaries for various collection types. The return value of these methods must be stored somewhere for the summaries calculated by it to be persistent. The underlying implementation uses a guava cache with weak keys.

https://code.google.com/p/guava-libraries/wiki/CachesExplained

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PersistentSummary
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashMapEntry[K, V, S](summary: Summary[(K, V), S]): (HashMap[K, V]) ⇒ S

    Permalink

    Summarize the entries of a HashMap

    Summarize the entries of a HashMap

    K

    the key type

    V

    the value type

    S

    the summary type

    summary

    the kind of summary to use

    returns

    a function that performs the summary

  12. def hashMapKey[K, S](summary: Summary[K, S]): (HashMap[K, _]) ⇒ S

    Permalink

    Summarize the keys of a HashMap

    Summarize the keys of a HashMap

    K

    the element type

    S

    the summary type

    summary

    the kind of summary to use

    returns

    a function that performs the summary

  13. def hashMapValue[V, S](summary: Summary[V, S]): (HashMap[_, V]) ⇒ S

    Permalink

    Summarize the values of a HashMap

    Summarize the values of a HashMap

    V

    the element type

    S

    the summary type

    summary

    the kind of summary to use

    returns

    a function that performs the summary

  14. def hashSet[K, S](summary: Summary[K, S]): (HashSet[K]) ⇒ S

    Permalink

    Summarize the elements of a HashSet

    Summarize the elements of a HashSet

    K

    the element type

    S

    the summary type

    summary

    the kind of summary to use

    returns

    a function that performs the summary

  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  20. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  21. def treeMapEntry[K, V, S](summary: Summary[(K, V), S]): (TreeMap[K, V]) ⇒ S

    Permalink

    Summarize the entries of a TreeMap

    Summarize the entries of a TreeMap

    K

    the key type

    V

    the value type

    S

    the summary type

    summary

    the kind of summary to use

    returns

    a function that performs the summary

  22. def treeMapKey[K, S](summary: Summary[K, S]): (TreeMap[K, _]) ⇒ S

    Permalink

    Summarize the elements of a TreeMap

    Summarize the elements of a TreeMap

    K

    the element type

    S

    the summary type

    summary

    the kind of summary to use

    returns

    a function that performs the summary

  23. def treeMapValue[V, S](summary: Summary[V, S]): (TreeMap[_, V]) ⇒ S

    Permalink

    Summarize the values of a TreeMap

    Summarize the values of a TreeMap

    V

    the element type

    S

    the summary type

    summary

    the kind of summary to use

    returns

    a function that performs the summary

  24. def treeSet[K, S](summary: Summary[K, S]): (TreeSet[K]) ⇒ S

    Permalink

    Summarize the elements of a TreeSet

    Summarize the elements of a TreeSet

    K

    the element type

    S

    the summary type

    summary

    the kind of summary to use

    returns

    a function that performs the summary

  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped