ClipboardContent

class ClipboardContent(val delegate: ClipboardContent) extends JMapWrapperLike[DataFormat, AnyRef] with SFXDelegate[ClipboardContent]

Data container for Clipboard data. It can hold multiple data in several data formats.

Data container for Clipboard data. It can hold multiple data in several data formats.

Example use:

 val content = new ClipboardContent()
 content.putString("Some text")
 content.putHtml("<b>Some</b> text")

Alternative use:

  val content = ClipboardContent(
    DataFormat.PlainText -> "Some text",
    DataFormat.Html -> "<b>Some</b> text"
  )

Caution when putting files into the clipboard. The recommended way is to use putFiles method:

 content.putFiles(Seq(new File("one"), new File("two"))) *

When using with DataFormat.Files you have to use Java List as a container, which is less convenient:

 import scala.collection.JavaConverters._

 val content = ClipboardContent(
   DataFormat.Files -> Seq(new File("one"), new File("two")).asJava,
 )

Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ClipboardContent.html ClipboardContent.

Value Params
delegate

A JavaFX ClipboardContent to be wrapped. Its default value is a new JavaFX ClipboardContent.

Constructor

Creates a new ClipboardContent from a JavaFX one.

Companion
object
trait SFXDelegate[ClipboardContent]
trait JMapWrapperLike[DataFormat, AnyRef]
trait Map[DataFormat, AnyRef]
trait MapOps[DataFormat, AnyRef, [K, V] =>> Map[K, V], Map[DataFormat, AnyRef]]
trait Shrinkable[DataFormat]
trait Builder[(DataFormat, AnyRef), Map[DataFormat, AnyRef]]
trait Growable[(DataFormat, AnyRef)]
trait Clearable
trait Cloneable[Map[DataFormat, AnyRef]]
trait Cloneable
trait Map[DataFormat, AnyRef]
trait Equals
trait MapFactoryDefaults[DataFormat, AnyRef, [K, V] =>> Map[K, V], [A] =>> Iterable[A]]
trait MapOps[DataFormat, AnyRef, [K, V] =>> Map[K, V], Map[DataFormat, AnyRef]]
trait PartialFunction[DataFormat, AnyRef]
trait DataFormat => AnyRef
trait Iterable[(DataFormat, AnyRef)]
trait Iterable[(DataFormat, AnyRef)]
trait IterableFactoryDefaults[(DataFormat, AnyRef), [A] =>> Iterable[A]]
trait IterableOps[(DataFormat, AnyRef), [A] =>> Iterable[A], Map[DataFormat, AnyRef]]
trait IterableOnceOps[(DataFormat, AnyRef), [A] =>> Iterable[A], Map[DataFormat, AnyRef]]
trait IterableOnce[(DataFormat, AnyRef)]
class Object
trait Matchable
class Any

Value members

Concrete methods

def files: Seq[File]

Gets the List of Files from the clipboard which had previously been registered.

Gets the List of Files from the clipboard which had previously been registered.

def hasFiles: Boolean

Gets whether an List of Files (DataFormat.FILES) has been registered on this Clipboard.

Gets whether an List of Files (DataFormat.FILES) has been registered on this Clipboard.

def hasHtml: Boolean

Gets whether an HTML text String (DataFormat.HTML) has been registered on this Clipboard.

Gets whether an HTML text String (DataFormat.HTML) has been registered on this Clipboard.

def hasImage: Boolean

Gets whether an Image (DataFormat.IMAGE) has been registered on this Clipboard.

Gets whether an Image (DataFormat.IMAGE) has been registered on this Clipboard.

def hasRtf: Boolean

Gets whether an RTF String (DataFormat.RTF) has been registered on this Clipboard.

Gets whether an RTF String (DataFormat.RTF) has been registered on this Clipboard.

def hasString: Boolean

Gets whether a plain text String (DataFormat.PLAIN_TEXT) has been registered on this Clipboard.

Gets whether a plain text String (DataFormat.PLAIN_TEXT) has been registered on this Clipboard.

def hasUrl: Boolean

Gets whether a url String (DataFormat.URL) has been registered on this Clipboard.

Gets whether a url String (DataFormat.URL) has been registered on this Clipboard.

def html: String

Gets the HTML text String from the clipboard which had previously been registered.

Gets the HTML text String from the clipboard which had previously been registered.

def image: Image

Gets the Image from the clipboard which had previously been registered.

Gets the Image from the clipboard which had previously been registered.

def putFiles(files: Seq[File]): Boolean

Puts an List of Files onto the Clipboard.

Puts an List of Files onto the Clipboard.

def putFilesByPath(filePaths: Seq[String]): Boolean

Puts an List of Files onto the Clipboard, based on the file path.

Puts an List of Files onto the Clipboard, based on the file path.

def putHtml(html: String): Boolean

Puts an HTML text String onto the Clipboard.

Puts an HTML text String onto the Clipboard.

def putImage(i: Image): Boolean

Puts an Image onto the Clipboard.

Puts an Image onto the Clipboard.

def putRtf(rtf: String): Boolean

Puts an RTF text String onto the Clipboard.

Puts an RTF text String onto the Clipboard.

def putString(string: String): Boolean

Puts a plain text String onto the Clipboard.

Puts a plain text String onto the Clipboard.

def putUrl(url: String): Boolean

Puts a URL String onto the Clipboard.

Puts a URL String onto the Clipboard.

def rtf: String

Gets the RTF text String from the clipboard which had previously been registered.

Gets the RTF text String from the clipboard which had previously been registered.

def string: String

Gets the plain text String from the clipboard which had previously been registered.

Gets the plain text String from the clipboard which had previously been registered.

override def underlying: Map[DataFormat, AnyRef]
Definition Classes
JMapWrapperLike
def url: String

Gets the URL String from the clipboard which had previously been registered.

Gets the URL String from the clipboard which had previously been registered.

Inherited methods

@inline
final def ++[B >: (DataFormat, AnyRef)](suffix: IterableOnce[B]): Iterable[B]
Inherited from
IterableOps
def ++[V2 >: AnyRef](xs: IterableOnce[(DataFormat, V2)]): Map[DataFormat, V2]
Inherited from
MapOps
@inline
final def ++=(xs: IterableOnce[(DataFormat, AnyRef)]): ClipboardContent
Inherited from
Growable
@inline
final def +=(elem: (DataFormat, AnyRef)): ClipboardContent
Inherited from
Growable
@inline
final def --=(xs: IterableOnce[DataFormat]): ClipboardContent
Inherited from
Shrinkable
@inline
final def -=(elem: DataFormat): ClipboardContent
Inherited from
Shrinkable
Inherited from
Cloneable
def addAll(xs: IterableOnce[(DataFormat, AnyRef)]): ClipboardContent
Inherited from
Growable
override def addOne(kv: (DataFormat, AnyRef)): ClipboardContent
Definition Classes
JMapWrapperLike -> Growable
Inherited from
JMapWrapperLike
@inline
final def addString(b: StringBuilder): StringBuilder
Inherited from
IterableOnceOps
@inline
final def addString(b: StringBuilder, sep: String): StringBuilder
Inherited from
IterableOnceOps
override def addString(sb: StringBuilder, start: String, sep: String, end: String): StringBuilder
Definition Classes
MapOps -> IterableOnceOps
Inherited from
MapOps
def andThen[C](k: PartialFunction[AnyRef, C]): PartialFunction[DataFormat, C]
Inherited from
PartialFunction
override def andThen[C](k: AnyRef => C): PartialFunction[DataFormat, C]
Definition Classes
PartialFunction -> Function1
Inherited from
PartialFunction
@throws(scala.this.throws.$lessinit$greater$default$1[scala.NoSuchElementException])
def apply(key: DataFormat): AnyRef
Inherited from
MapOps
override def applyOrElse[K1 <: DataFormat, V1 >: AnyRef](x: K1, default: K1 => V1): V1
Definition Classes
MapOps -> PartialFunction
Inherited from
MapOps
def canEqual(that: Any): Boolean
Inherited from
Map
override def clear(): Unit
Definition Classes
JMapWrapperLike -> MapOps -> Builder -> Clearable
Inherited from
JMapWrapperLike
override def clone(): Map[DataFormat, AnyRef]
Definition Classes
MapOps -> Cloneable -> Object
Inherited from
MapOps
def collect[B](pf: PartialFunction[(DataFormat, AnyRef), B]): Iterable[B]
Inherited from
IterableOps
def collect[K2, V2](pf: PartialFunction[(DataFormat, AnyRef), (K2, V2)]): Map[K2, V2]
Inherited from
MapOps
def collectFirst[B](pf: PartialFunction[(DataFormat, AnyRef), B]): Option[B]
Inherited from
IterableOnceOps
def compose[R](k: PartialFunction[R, DataFormat]): PartialFunction[R, AnyRef]
Inherited from
PartialFunction
@unspecialized
def compose[A](g: A => DataFormat): A => AnyRef
Inherited from
Function1
def concat[B >: (DataFormat, AnyRef)](suffix: IterableOnce[B]): Iterable[B]
Inherited from
IterableOps
def concat[V2 >: AnyRef](suffix: IterableOnce[(DataFormat, V2)]): Map[DataFormat, V2]
Inherited from
MapOps
def contains(key: DataFormat): Boolean
Inherited from
MapOps
def copyToArray[B >: (DataFormat, AnyRef)](xs: Array[B], start: Int, len: Int): Int
Inherited from
IterableOnceOps
@deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
def copyToArray[B >: (DataFormat, AnyRef)](xs: Array[B], start: Int): Int
Inherited from
IterableOnceOps
@deprecatedOverriding("This should always forward to the 3-arg version of this method", "2.13.4")
def copyToArray[B >: (DataFormat, AnyRef)](xs: Array[B]): Int
Inherited from
IterableOnceOps
def corresponds[B](that: IterableOnce[B])(p: ((DataFormat, AnyRef), B) => Boolean): Boolean
Inherited from
IterableOnceOps
def count(p: (DataFormat, AnyRef) => Boolean): Int
Inherited from
IterableOnceOps
@throws(scala.this.throws.$lessinit$greater$default$1[scala.NoSuchElementException])
def default(key: DataFormat): AnyRef
Inherited from
MapOps
def drop(n: Int): Map[DataFormat, AnyRef]
Inherited from
IterableOps
def dropRight(n: Int): Map[DataFormat, AnyRef]
Inherited from
IterableOps
def dropWhile(p: (DataFormat, AnyRef) => Boolean): Map[DataFormat, AnyRef]
Inherited from
IterableOps
def elementWise: ElementWiseExtractor[DataFormat, AnyRef]
Inherited from
PartialFunction
override def empty: Map[DataFormat, AnyRef]
Definition Classes
MapFactoryDefaults -> IterableOps
Inherited from
MapFactoryDefaults
override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value Params
ref

Object to be compared.

Returns

if the other object is equals to this delegate or not.

Definition Classes
Inherited from
SFXDelegate
def exists(p: (DataFormat, AnyRef) => Boolean): Boolean
Inherited from
IterableOnceOps
def filter(pred: (DataFormat, AnyRef) => Boolean): Map[DataFormat, AnyRef]
Inherited from
IterableOps
def filterInPlace(p: (DataFormat, AnyRef) => Boolean): ClipboardContent
Inherited from
MapOps
def filterNot(pred: (DataFormat, AnyRef) => Boolean): Map[DataFormat, AnyRef]
Inherited from
IterableOps
def find(p: (DataFormat, AnyRef) => Boolean): Option[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
def flatMap[B](f: (DataFormat, AnyRef) => IterableOnce[B]): Iterable[B]
Inherited from
IterableOps
def flatMap[K2, V2](f: (DataFormat, AnyRef) => IterableOnce[(K2, V2)]): Map[K2, V2]
Inherited from
MapOps
def flatten[B](asIterable: (DataFormat, AnyRef) => IterableOnce[B]): Iterable[B]
Inherited from
IterableOps
def fold[A1 >: (DataFormat, AnyRef)](z: A1)(op: (A1, A1) => A1): A1
Inherited from
IterableOnceOps
def foldLeft[B](z: B)(op: (B, (DataFormat, AnyRef)) => B): B
Inherited from
IterableOnceOps
def foldRight[B](z: B)(op: ((DataFormat, AnyRef), B) => B): B
Inherited from
IterableOnceOps
def forall(p: (DataFormat, AnyRef) => Boolean): Boolean
Inherited from
IterableOnceOps
def foreach[U](f: (DataFormat, AnyRef) => U): Unit
Inherited from
IterableOnceOps
def foreachEntry[U](f: (DataFormat, AnyRef) => U): Unit
Inherited from
MapOps
override protected def fromSpecific(coll: IterableOnce[(DataFormat, AnyRef)]): Map[DataFormat, AnyRef]
Definition Classes
MapFactoryDefaults -> IterableOps
Inherited from
MapFactoryDefaults
def get(k: DataFormat): Option[AnyRef]
Inherited from
JMapWrapperLike
def getOrElse[V1 >: AnyRef](key: DataFormat, default: => V1): V1
Inherited from
MapOps
def getOrElseUpdate(key: DataFormat, op: => AnyRef): AnyRef
Inherited from
MapOps
def groupBy[K](f: (DataFormat, AnyRef) => K): Map[K, Map[DataFormat, AnyRef]]
Inherited from
IterableOps
def groupMap[K, B](key: (DataFormat, AnyRef) => K)(f: (DataFormat, AnyRef) => B): Map[K, Iterable[B]]
Inherited from
IterableOps
def groupMapReduce[K, B](key: (DataFormat, AnyRef) => K)(f: (DataFormat, AnyRef) => B)(reduce: (B, B) => B): Map[K, B]
Inherited from
IterableOps
def grouped(size: Int): Iterator[Map[DataFormat, AnyRef]]
Inherited from
IterableOps
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate
def head: (DataFormat, AnyRef)
Inherited from
IterableOps
def headOption: Option[(DataFormat, AnyRef)]
Inherited from
IterableOps
def init: Map[DataFormat, AnyRef]
Inherited from
IterableOps
def inits: Iterator[Map[DataFormat, AnyRef]]
Inherited from
IterableOps
def isDefinedAt(key: DataFormat): Boolean
Inherited from
MapOps
def isEmpty: Boolean
Inherited from
IterableOnceOps
override def isTraversableAgain: Boolean
Definition Classes
IterableOps -> IterableOnceOps
Inherited from
IterableOps
override def iterableFactory: IterableFactory[[A] =>> Iterable[A]]
Definition Classes
Iterable -> Iterable -> IterableOps
Inherited from
Iterable
def iterator: Iterator[(DataFormat, AnyRef)]
Inherited from
JMapWrapperLike
def keySet: Set[DataFormat]
Inherited from
MapOps
def keyStepper[S <: Stepper[_]](shape: StepperShape[DataFormat, S]): S
Inherited from
MapOps
def keys: Iterable[DataFormat]
Inherited from
MapOps
def keysIterator: Iterator[DataFormat]
Inherited from
MapOps
override def knownSize: Int
Definition Classes
MapOps -> Growable -> IterableOnce
Inherited from
MapOps
def last: (DataFormat, AnyRef)
Inherited from
IterableOps
def lastOption: Option[(DataFormat, AnyRef)]
Inherited from
IterableOps
def lazyZip[B](that: Iterable[B]): LazyZip2[(DataFormat, AnyRef), B, ClipboardContent]
Inherited from
Iterable
def lift: DataFormat => Option[AnyRef]
Inherited from
PartialFunction
def map[B](f: (DataFormat, AnyRef) => B): Iterable[B]
Inherited from
IterableOps
def map[K2, V2](f: (DataFormat, AnyRef) => (K2, V2)): Map[K2, V2]
Inherited from
MapOps
override def mapFactory: MapFactory[[K, V] =>> Map[K, V]]
Definition Classes
Map -> Map -> MapOps
Inherited from
Map
def mapResult[NewTo](f: Map[DataFormat, AnyRef] => NewTo): Builder[(DataFormat, AnyRef), NewTo]
Inherited from
Builder
def mapValuesInPlace(f: (DataFormat, AnyRef) => AnyRef): ClipboardContent
Inherited from
MapOps
def max[B >: (DataFormat, AnyRef)](ord: Ordering[B]): (DataFormat, AnyRef)
Inherited from
IterableOnceOps
def maxBy[B](f: (DataFormat, AnyRef) => B)(cmp: Ordering[B]): (DataFormat, AnyRef)
Inherited from
IterableOnceOps
def maxByOption[B](f: (DataFormat, AnyRef) => B)(cmp: Ordering[B]): Option[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
def maxOption[B >: (DataFormat, AnyRef)](ord: Ordering[B]): Option[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
def min[B >: (DataFormat, AnyRef)](ord: Ordering[B]): (DataFormat, AnyRef)
Inherited from
IterableOnceOps
def minBy[B](f: (DataFormat, AnyRef) => B)(cmp: Ordering[B]): (DataFormat, AnyRef)
Inherited from
IterableOnceOps
def minByOption[B](f: (DataFormat, AnyRef) => B)(cmp: Ordering[B]): Option[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
def minOption[B >: (DataFormat, AnyRef)](ord: Ordering[B]): Option[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
@inline
final def mkString: String
Inherited from
IterableOnceOps
@inline
final def mkString(sep: String): String
Inherited from
IterableOnceOps
final def mkString(start: String, sep: String, end: String): String
Inherited from
IterableOnceOps
override protected def newSpecificBuilder: Builder[(DataFormat, AnyRef), Map[DataFormat, AnyRef]]
Definition Classes
MapFactoryDefaults -> IterableOps
Inherited from
MapFactoryDefaults
@deprecatedOverriding("nonEmpty is defined as !isEmpty; override isEmpty instead", "2.13.0")
def nonEmpty: Boolean
Inherited from
IterableOnceOps
def orElse[A1 <: DataFormat, B1 >: AnyRef](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
Inherited from
PartialFunction
def partition(p: (DataFormat, AnyRef) => Boolean): (Map[DataFormat, AnyRef], Map[DataFormat, AnyRef])
Inherited from
IterableOps
def partitionMap[A1, A2](f: (DataFormat, AnyRef) => Either[A1, A2]): (Iterable[A1], Iterable[A2])
Inherited from
IterableOps
def product[B >: (DataFormat, AnyRef)](num: Numeric[B]): B
Inherited from
IterableOnceOps
override def put(k: DataFormat, v: AnyRef): Option[AnyRef]
Definition Classes
JMapWrapperLike -> MapOps
Inherited from
JMapWrapperLike
def reduce[B >: (DataFormat, AnyRef)](op: (B, B) => B): B
Inherited from
IterableOnceOps
def reduceLeft[B >: (DataFormat, AnyRef)](op: (B, (DataFormat, AnyRef)) => B): B
Inherited from
IterableOnceOps
def reduceLeftOption[B >: (DataFormat, AnyRef)](op: (B, (DataFormat, AnyRef)) => B): Option[B]
Inherited from
IterableOnceOps
def reduceOption[B >: (DataFormat, AnyRef)](op: (B, B) => B): Option[B]
Inherited from
IterableOnceOps
def reduceRight[B >: (DataFormat, AnyRef)](op: ((DataFormat, AnyRef), B) => B): B
Inherited from
IterableOnceOps
def reduceRightOption[B >: (DataFormat, AnyRef)](op: ((DataFormat, AnyRef), B) => B): Option[B]
Inherited from
IterableOnceOps
override def remove(k: DataFormat): Option[AnyRef]
Definition Classes
JMapWrapperLike -> MapOps
Inherited from
JMapWrapperLike
def result(): Map[DataFormat, AnyRef]
Inherited from
MapOps
protected def reversed: Iterable[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
def runWith[U](action: AnyRef => U): DataFormat => Boolean
Inherited from
PartialFunction
def scan[B >: (DataFormat, AnyRef)](z: B)(op: (B, B) => B): Iterable[B]
Inherited from
IterableOps
def scanLeft[B](z: B)(op: (B, (DataFormat, AnyRef)) => B): Iterable[B]
Inherited from
IterableOps
def scanRight[B](z: B)(op: ((DataFormat, AnyRef), B) => B): Iterable[B]
Inherited from
IterableOps
override def size: Int
Definition Classes
JMapWrapperLike -> IterableOnceOps
Inherited from
JMapWrapperLike
def sizeCompare(that: Iterable[_]): Int
Inherited from
IterableOps
def sizeCompare(otherSize: Int): Int
Inherited from
IterableOps
final def sizeHint(coll: IterableOnce[_], delta: Int): Unit
Inherited from
Builder
def sizeHint(size: Int): Unit
Inherited from
Builder
final def sizeHintBounded(size: Int, boundingColl: Iterable[_]): Unit
Inherited from
Builder
@inline
final def sizeIs: SizeCompareOps
Inherited from
IterableOps
def slice(from: Int, until: Int): Map[DataFormat, AnyRef]
Inherited from
IterableOps
def sliding(size: Int, step: Int): Iterator[Map[DataFormat, AnyRef]]
Inherited from
IterableOps
def sliding(size: Int): Iterator[Map[DataFormat, AnyRef]]
Inherited from
IterableOps
def span(p: (DataFormat, AnyRef) => Boolean): (Map[DataFormat, AnyRef], Map[DataFormat, AnyRef])
Inherited from
IterableOps
override def splitAt(n: Int): (Map[DataFormat, AnyRef], Map[DataFormat, AnyRef])
Definition Classes
IterableOps -> IterableOnceOps
Inherited from
IterableOps
def stepper[S <: Stepper[_]](shape: StepperShape[(DataFormat, AnyRef), S]): S
Inherited from
IterableOnce
def subtractAll(xs: IterableOnce[DataFormat]): ClipboardContent
Inherited from
Shrinkable
override def subtractOne(key: DataFormat): ClipboardContent
Definition Classes
JMapWrapperLike -> Shrinkable
Inherited from
JMapWrapperLike
def sum[B >: (DataFormat, AnyRef)](num: Numeric[B]): B
Inherited from
IterableOnceOps
def tail: Map[DataFormat, AnyRef]
Inherited from
IterableOps
def tails: Iterator[Map[DataFormat, AnyRef]]
Inherited from
IterableOps
def take(n: Int): Map[DataFormat, AnyRef]
Inherited from
IterableOps
def takeRight(n: Int): Map[DataFormat, AnyRef]
Inherited from
IterableOps
def takeWhile(p: (DataFormat, AnyRef) => Boolean): Map[DataFormat, AnyRef]
Inherited from
IterableOps
override def tapEach[U](f: (DataFormat, AnyRef) => U): Map[DataFormat, AnyRef]
Definition Classes
IterableOps -> IterableOnceOps
Inherited from
IterableOps
def to[C1](factory: Factory[(DataFormat, AnyRef), C1]): C1
Inherited from
IterableOnceOps
def toArray[B >: (DataFormat, AnyRef)](ClassTag[B]): Array[B]
Inherited from
IterableOnceOps
@inline
final def toBuffer[B >: (DataFormat, AnyRef)]: Buffer[B]
Inherited from
IterableOnceOps
def toIndexedSeq: IndexedSeq[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
Inherited from
Iterable
def toList: List[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
def toMap[K, V](ev: (DataFormat, AnyRef) <:< (K, V)): Map[K, V]
Inherited from
IterableOnceOps
def toSeq: Seq[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
def toSet[B >: (DataFormat, AnyRef)]: Set[B]
Inherited from
IterableOnceOps
override def toString: String
Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
Inherited from
SFXDelegate
def toVector: Vector[(DataFormat, AnyRef)]
Inherited from
IterableOnceOps
def transpose[B](asIterable: (DataFormat, AnyRef) => Iterable[B]): Iterable[Iterable[B]]
Inherited from
IterableOps
def unapply(a: DataFormat): Option[AnyRef]
Inherited from
PartialFunction
def unzip[A1, A2](asPair: (DataFormat, AnyRef) => (A1, A2)): (Iterable[A1], Iterable[A2])
Inherited from
IterableOps
def unzip3[A1, A2, A3](asTriple: (DataFormat, AnyRef) => (A1, A2, A3)): (Iterable[A1], Iterable[A2], Iterable[A3])
Inherited from
IterableOps
override def update(k: DataFormat, v: AnyRef): Unit
Definition Classes
JMapWrapperLike -> MapOps
Inherited from
JMapWrapperLike
def updateWith(key: DataFormat)(remappingFunction: Option[AnyRef] => Option[AnyRef]): Option[AnyRef]
Inherited from
MapOps
def valueStepper[S <: Stepper[_]](shape: StepperShape[AnyRef, S]): S
Inherited from
MapOps
def values: Iterable[AnyRef]
Inherited from
MapOps
def valuesIterator: Iterator[AnyRef]
Inherited from
MapOps
override def view: MapView[DataFormat, AnyRef]
Definition Classes
MapOps -> IterableOps
Inherited from
MapOps
def withDefault(d: DataFormat => AnyRef): Map[DataFormat, AnyRef]
Inherited from
Map
def withDefaultValue(d: AnyRef): Map[DataFormat, AnyRef]
Inherited from
Map
override def withFilter(p: (DataFormat, AnyRef) => Boolean): WithFilter[DataFormat, AnyRef, [A] =>> Iterable[A], [K, V] =>> Map[K, V]]
Definition Classes
MapFactoryDefaults -> IterableOps
Inherited from
MapFactoryDefaults
def zip[B](that: IterableOnce[B]): Iterable[((DataFormat, AnyRef), B)]
Inherited from
IterableOps
def zipAll[A1 >: (DataFormat, AnyRef), B](that: Iterable[B], thisElem: A1, thatElem: B): Iterable[(A1, B)]
Inherited from
IterableOps
def zipWithIndex: Iterable[((DataFormat, AnyRef), Int)]
Inherited from
IterableOps

Deprecated and Inherited methods

@deprecated("Use ++ with an explicit collection argument instead of + with varargs", "2.13.0")
def +[V1 >: AnyRef](elem1: (DataFormat, V1), elem2: (DataFormat, V1), elems: (DataFormat, V1)*): Map[DataFormat, V1]
Deprecated
Inherited from
MapOps
@deprecated("Consider requiring an immutable Map or fall back to Map.concat.", "2.13.0")
def +[V1 >: AnyRef](kv: (DataFormat, V1)): Map[DataFormat, V1]
Deprecated
Inherited from
MapOps
@deprecated("Use ++ instead of ++: for collections of type Iterable", "2.13.0")
def ++:[B >: (DataFormat, AnyRef)](that: IterableOnce[B]): Iterable[B]
Deprecated
Inherited from
IterableOps
@deprecated("Use ++ instead of ++: for collections of type Iterable", "2.13.0")
def ++:[V1 >: AnyRef](that: IterableOnce[(DataFormat, V1)]): Map[DataFormat, V1]
Deprecated
Inherited from
MapOps
@inline @deprecated("Use `++=` aka `addAll` instead of varargs `+=`; infix operations with an operand of multiple args will be deprecated", "2.13.0")
final def +=(elem1: (DataFormat, AnyRef), elem2: (DataFormat, AnyRef), elems: (DataFormat, AnyRef)*): ClipboardContent
Deprecated
Inherited from
Growable
@deprecated("Use -- or removeAll on an immutable Map", "2.13.0")
final def -(key1: DataFormat, key2: DataFormat, keys: DataFormat*): Map[DataFormat, AnyRef]
Deprecated
Inherited from
MapOps
@deprecated("Use - or remove on an immutable Map", "2.13.0")
final def -(key: DataFormat): Map[DataFormat, AnyRef]
Deprecated
Inherited from
MapOps
@inline @deprecated("Consider requiring an immutable Map.", "2.13.0")
def --(keys: IterableOnce[DataFormat]): Map[DataFormat, AnyRef]
Deprecated
Inherited from
MapOps
@deprecated("Use `--=` aka `subtractAll` instead of varargs `-=`; infix operations with an operand of multiple args will be deprecated", "2.13.3")
def -=(elem1: DataFormat, elem2: DataFormat, elems: DataFormat*): ClipboardContent
Deprecated
Inherited from
Shrinkable
@inline @deprecated("Use foldLeft instead of /:", "2.13.0")
final def /:[B](z: B)(op: (B, (DataFormat, AnyRef)) => B): B
Deprecated
Inherited from
IterableOnceOps
@inline @deprecated("Use foldRight instead of :\\", "2.13.0")
final def :\[B](z: B)(op: ((DataFormat, AnyRef), B) => B): B
Deprecated
Inherited from
IterableOnceOps
@deprecated("`aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.", "2.13.0")
def aggregate[B](z: => B)(seqop: (B, (DataFormat, AnyRef)) => B, combop: (B, B) => B): B
Deprecated
Inherited from
IterableOnceOps
@inline @deprecatedOverriding("Use iterableFactory instead", "2.13.0") @deprecated("Use iterableFactory instead", "2.13.0")
def companion: IterableFactory[[A] =>> Iterable[A]]
Deprecated
Inherited from
IterableOps
@inline @deprecated("Use `dest ++= coll` instead", "2.13.0")
final def copyToBuffer[B >: (DataFormat, AnyRef)](dest: Buffer[B]): Unit
Deprecated
Inherited from
IterableOnceOps
@deprecated("Use .view.filterKeys(f). A future version will include a strict version of this method (for now, .view.filterKeys(p).toMap).", "2.13.0")
def filterKeys(p: DataFormat => Boolean): MapView[DataFormat, AnyRef]
Deprecated
Inherited from
MapOps
@deprecated("Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)", "2.13.0")
def hasDefiniteSize: Boolean
Deprecated
Inherited from
IterableOnceOps
@deprecated("Use .view.mapValues(f). A future version will include a strict version of this method (for now, .view.mapValues(f).toMap).", "2.13.0")
def mapValues[W](f: AnyRef => W): MapView[DataFormat, W]
Deprecated
Inherited from
MapOps
@deprecated("Use coll instead of repr in a collection implementation, use the collection value itself from the outside", "2.13.0")
final def repr: Map[DataFormat, AnyRef]
Deprecated
Inherited from
IterableOps
@inline @deprecated("Use filterInPlace instead", "2.13.0")
final def retain(p: (DataFormat, AnyRef) => Boolean): ClipboardContent
Deprecated
Inherited from
MapOps
@deprecated("Iterable.seq always returns the iterable itself", "2.13.0")
Deprecated
Inherited from
Iterable
@inline @deprecated("Use .iterator instead of .toIterator", "2.13.0")
final def toIterator: Iterator[(DataFormat, AnyRef)]
Deprecated
Inherited from
IterableOnceOps
@inline @deprecated("Use .to(LazyList) instead of .toStream", "2.13.0")
final def toStream: Stream[(DataFormat, AnyRef)]
Deprecated
Inherited from
IterableOnceOps
@deprecated("Use toIterable instead", "2.13.0")
final def toTraversable: Iterable[(DataFormat, AnyRef)]
Deprecated
Inherited from
IterableOps
@inline @deprecated("Use mapValuesInPlace instead", "2.13.0")
final def transform(f: (DataFormat, AnyRef) => AnyRef): ClipboardContent
Deprecated
Inherited from
MapOps
@deprecated("Use m.clone().addOne((k,v)) instead of m.updated(k, v)", "2.13.0")
def updated[V1 >: AnyRef](key: DataFormat, value: V1): Map[DataFormat, V1]
Deprecated
Inherited from
MapOps
@deprecated("Use .view.slice(from, until) instead of .view(from, until)", "2.13.0")
def view(from: Int, until: Int): View[(DataFormat, AnyRef)]
Deprecated
Inherited from
IterableOps

Concrete fields

override val delegate: ClipboardContent