Packages

t

swaydb.java

SetMapT

trait SetMapT[K, V] extends Source[K, KeyVal[K, V]]

Base trait for a basic SwayDB SetMap type.

Linear Supertypes
Source[K, KeyVal[K, V]], Stream[KeyVal[K, V]], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SetMapT
  2. Source
  3. Stream
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def asJava: java.util.Map[K, V]
  2. abstract def asScalaStream: swaydb.Source[K, KeyVal[K, V], Less]
    Definition Classes
    Source → Stream
  3. abstract def clearKeyValues(): Unit
  4. abstract def close(): Unit
  5. abstract def contains(key: K): Boolean
  6. abstract def delete(): Unit
  7. abstract def expiration(key: K): Optional[Expiration]
  8. abstract def expire(key: K, after: Duration): Unit
  9. abstract def get(key: K): Optional[V]
  10. abstract def getKey(key: K): Optional[K]
  11. abstract def getKeyValue(key: K): Optional[KeyVal[K, V]]
  12. abstract def head: Optional[KeyVal[K, V]]
  13. abstract def isEmpty: Boolean
  14. abstract def keys: Stream[K]
  15. abstract def last: Optional[KeyVal[K, V]]
  16. abstract def levelMeter(levelNumber: Int): Optional[LevelMeter]
  17. abstract def levelZeroMeter: LevelZeroMeter
  18. abstract def mightContain(key: K): Boolean
  19. abstract def nonEmpty: Boolean
  20. abstract def path: Path
  21. abstract def put(keyValues: Iterator[KeyVal[K, V]]): Unit
  22. abstract def put(keyValues: Iterable[KeyVal[K, V]]): Unit
  23. abstract def put(keyValues: Stream[KeyVal[K, V]]): Unit
  24. abstract def put(key: K, value: V, expireAfter: Duration): Unit
  25. abstract def put(key: K, value: V): Unit
  26. abstract def remove(keys: Iterator[K]): Unit
  27. abstract def remove(keys: Iterable[K]): Unit
  28. abstract def remove(keys: Stream[K]): Unit
  29. abstract def remove(key: K): Unit
  30. abstract def sizeOfBloomFilterEntries: Int
  31. abstract def sizeOfSegments: Long
  32. abstract def timeLeft(key: K): Optional[Duration]
  33. abstract def values: Stream[V]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def after(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def before(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  8. def count: Int
    Definition Classes
    Stream
  9. def count(predicate: Predicate[KeyVal[K, V]]): Int
    Definition Classes
    Stream
  10. def drop(count: Int): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  11. def dropWhile(predicate: Predicate[KeyVal[K, V]]): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def filter(predicate: Predicate[KeyVal[K, V]]): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  15. def filterNot(predicate: Predicate[KeyVal[K, V]]): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. def flatMap[B](function: JavaFunction[KeyVal[K, V], Stream[B]]): Stream[B]
    Definition Classes
    Stream
  18. def foldLeft[B](initial: B, function: BiFunction[B, KeyVal[K, V], B]): B
    Definition Classes
    Stream
  19. def forEach(consumer: Consumer[KeyVal[K, V]]): Unit
    Definition Classes
    Stream
  20. def from(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  21. def fromOrAfter(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  22. def fromOrBefore(key: K): Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. def headOption: Optional[KeyVal[K, V]]
    Definition Classes
    Stream
  26. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  27. def iterator(): Iterator[KeyVal[K, V]]
    Definition Classes
    Stream
  28. def lastOption: Optional[KeyVal[K, V]]
    Definition Classes
    Stream
  29. def map[B](function: JavaFunction[KeyVal[K, V], B]): Stream[B]
    Definition Classes
    Stream
  30. def materialize: List[KeyVal[K, V]]
    Definition Classes
    Stream
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. def partition[B](predicate: Predicate[KeyVal[K, V]]): Pair[List[KeyVal[K, V]], List[KeyVal[K, V]]]
    Definition Classes
    Stream
  35. def reverse: Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  36. def stream: Source[K, KeyVal[K, V]]
    Definition Classes
    Source
  37. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  38. def take(count: Int): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  39. def takeWhile(predicate: Predicate[KeyVal[K, V]]): Stream[KeyVal[K, V]]
    Definition Classes
    Stream
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Source[K, KeyVal[K, V]]

Inherited from Stream[KeyVal[K, V]]

Inherited from AnyRef

Inherited from Any

Ungrouped