ClipboardContent

scalafx.scene.input.ClipboardContent
See theClipboardContent companion object
class ClipboardContent(val delegate: ClipboardContent) extends SFXDelegate[ClipboardContent]

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.jdk.CollectionConverters.*

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

Wraps a $JFX $URL0 $FC.

Value parameters

delegate

A $JFX $FC to be wrapped. Its default value is a new $JFX $FC.

Attributes

Constructor

Creates a new $FC from a $JFX one.

Companion
object
Graph
Supertypes
trait SFXDelegate[ClipboardContent]
trait Map[DataFormat, AnyRef]
trait MapOps[DataFormat, AnyRef, Map, 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, Map, Iterable]
trait MapOps[DataFormat, AnyRef, Map, Map[DataFormat, AnyRef]]
trait PartialFunction[DataFormat, AnyRef]
trait DataFormat => AnyRef
trait Iterable[(DataFormat, AnyRef)]
trait Iterable[(DataFormat, AnyRef)]
trait IterableFactoryDefaults[(DataFormat, AnyRef), Iterable]
trait IterableOps[(DataFormat, AnyRef), Iterable, Map[DataFormat, AnyRef]]
trait IterableOnceOps[(DataFormat, AnyRef), Iterable, Map[DataFormat, AnyRef]]
trait IterableOnce[(DataFormat, AnyRef)]
class Object
trait Matchable
class Any
Show all

Members list

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.

Attributes

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.

Attributes

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.

Attributes

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

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

Attributes

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.

Attributes

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.

Attributes

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.

Attributes

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.

Attributes

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.

Attributes

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

Puts an List of Files onto the Clipboard.

Puts an List of Files onto the Clipboard.

Attributes

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.

Attributes

def putHtml(html: String): Boolean

Puts an HTML text String onto the Clipboard.

Puts an HTML text String onto the Clipboard.

Attributes

Puts an Image onto the Clipboard.

Puts an Image onto the Clipboard.

Attributes

def putRtf(rtf: String): Boolean

Puts an RTF text String onto the Clipboard.

Puts an RTF text String onto the Clipboard.

Attributes

def putString(string: String): Boolean

Puts a plain text String onto the Clipboard.

Puts a plain text String onto the Clipboard.

Attributes

def putUrl(url: String): Boolean

Puts a URL String onto the Clipboard.

Puts a URL String onto the Clipboard.

Attributes

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.

Attributes

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.

Attributes

override def underlying: Map[DataFormat, AnyRef]

Attributes

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.

Attributes

Inherited methods

final def ++[B >: (DataFormat, AnyRef)](suffix: IterableOnce[B]): CC[B]

Attributes

Inherited from:
IterableOps
def ++[V2 >: AnyRef](xs: IterableOnce[(DataFormat, V2)]): CC[K, V2]

Attributes

Inherited from:
MapOps
final def ++=(xs: IterableOnce[(DataFormat, AnyRef)]): Growable.this.type

Attributes

Inherited from:
Growable
final def +=(elem: (DataFormat, AnyRef)): Growable.this.type

Attributes

Inherited from:
Growable
final def --=(xs: IterableOnce[DataFormat]): Shrinkable.this.type

Attributes

Inherited from:
Shrinkable
final def -=(elem: DataFormat): Shrinkable.this.type

Attributes

Inherited from:
Shrinkable
def addAll(xs: IterableOnce[(DataFormat, AnyRef)]): Growable.this.type

Attributes

Inherited from:
Growable
override def addOne(kv: (DataFormat, AnyRef)): JMapWrapperLike.this.type

Attributes

Definition Classes
JMapWrapperLike -> Growable
Inherited from:
JMapWrapperLike (hidden)

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps

Attributes

Definition Classes
Inherited from:
MapOps
def andThen[C](k: PartialFunction[AnyRef, C]): PartialFunction[A, C]

Attributes

Inherited from:
PartialFunction
override def andThen[C](k: AnyRef => C): PartialFunction[A, C]

Attributes

Definition Classes
Inherited from:
PartialFunction
def apply(key: DataFormat): V

Attributes

Inherited from:
MapOps
override def applyOrElse[K1 <: DataFormat, V1 >: AnyRef](x: K1, default: K1 => V1): V1

Attributes

Definition Classes
Inherited from:
MapOps
def canEqual(that: Any): Boolean

Attributes

Inherited from:
Map
override def clear(): Unit

Attributes

Definition Classes
JMapWrapperLike -> MapOps -> Builder -> Clearable
Inherited from:
JMapWrapperLike (hidden)
override def clone(): C

Create a copy of the receiver object.

Create a copy of the receiver object.

The default implementation of the clone method is platform dependent.

Attributes

Returns

a copy of the receiver object.

Note

not specified by SLS as a member of AnyRef

Definition Classes
MapOps -> Cloneable -> Object
Inherited from:
MapOps
def collect[B](pf: PartialFunction[(DataFormat, AnyRef), B]): CC[B]

Attributes

Inherited from:
IterableOps
def collect[K2, V2](pf: PartialFunction[(DataFormat, AnyRef), (K2, V2)]): CC[K2, V2]

Attributes

Inherited from:
MapOps
def collectFirst[B](pf: PartialFunction[(DataFormat, AnyRef), B]): Option[B]

Attributes

Inherited from:
IterableOnceOps
def compose[R](k: PartialFunction[R, DataFormat]): PartialFunction[R, B]

Attributes

Inherited from:
PartialFunction
def compose[A](g: A => DataFormat): A => R

Attributes

Inherited from:
Function1
def concat[B >: (DataFormat, AnyRef)](suffix: IterableOnce[B]): CC[B]

Attributes

Inherited from:
IterableOps
def concat[V2 >: AnyRef](suffix: IterableOnce[(DataFormat, V2)]): CC[K, V2]

Attributes

Inherited from:
MapOps
def contains(key: DataFormat): Boolean

Attributes

Inherited from:
MapOps
def copyToArray[B >: (DataFormat, AnyRef)](xs: Array[B], start: Int, len: Int): Int

Attributes

Inherited from:
IterableOnceOps
def copyToArray[B >: (DataFormat, AnyRef)](xs: Array[B], start: Int): Int

Attributes

Inherited from:
IterableOnceOps
def copyToArray[B >: (DataFormat, AnyRef)](xs: Array[B]): Int

Attributes

Inherited from:
IterableOnceOps
def corresponds[B](that: IterableOnce[B])(p: ((DataFormat, AnyRef), B) => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def count(p: ((DataFormat, AnyRef)) => Boolean): Int

Attributes

Inherited from:
IterableOnceOps
def default(key: DataFormat): V

Attributes

Inherited from:
MapOps
def drop(n: Int): C

Attributes

Inherited from:
IterableOps
def dropRight(n: Int): C

Attributes

Inherited from:
IterableOps
def dropWhile(p: ((DataFormat, AnyRef)) => Boolean): C

Attributes

Inherited from:
IterableOps

Attributes

Inherited from:
PartialFunction
override def empty: CC[K, V]

Attributes

Definition Classes
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 parameters

ref

Object to be compared.

Attributes

Returns

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

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
def exists(p: ((DataFormat, AnyRef)) => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def filter(pred: ((DataFormat, AnyRef)) => Boolean): C

Attributes

Inherited from:
IterableOps
def filterInPlace(p: (DataFormat, AnyRef) => Boolean): MapOps.this.type

Attributes

Inherited from:
MapOps
def filterNot(pred: ((DataFormat, AnyRef)) => Boolean): C

Attributes

Inherited from:
IterableOps
def find(p: ((DataFormat, AnyRef)) => Boolean): Option[A]

Attributes

Inherited from:
IterableOnceOps
def flatMap[B](f: ((DataFormat, AnyRef)) => IterableOnce[B]): CC[B]

Attributes

Inherited from:
IterableOps
def flatMap[K2, V2](f: ((DataFormat, AnyRef)) => IterableOnce[(K2, V2)]): CC[K2, V2]

Attributes

Inherited from:
MapOps
def flatten[B](implicit asIterable: ((DataFormat, AnyRef)) => IterableOnce[B]): CC[B]

Attributes

Inherited from:
IterableOps
def fold[A1 >: (DataFormat, AnyRef)](z: A1)(op: (A1, A1) => A1): A1

Attributes

Inherited from:
IterableOnceOps
def foldLeft[B](z: B)(op: (B, (DataFormat, AnyRef)) => B): B

Attributes

Inherited from:
IterableOnceOps
def foldRight[B](z: B)(op: ((DataFormat, AnyRef), B) => B): B

Attributes

Inherited from:
IterableOnceOps
def forall(p: ((DataFormat, AnyRef)) => Boolean): Boolean

Attributes

Inherited from:
IterableOnceOps
def foreach[U](f: ((DataFormat, AnyRef)) => U): Unit

Attributes

Inherited from:
IterableOnceOps
def foreachEntry[U](f: (DataFormat, AnyRef) => U): Unit

Attributes

Inherited from:
MapOps
override protected def fromSpecific(coll: IterableOnce[(DataFormat, AnyRef)]): CC[K, V]

Attributes

Definition Classes
Inherited from:
MapFactoryDefaults
def get(k: DataFormat): Option[B]

Attributes

Inherited from:
JMapWrapperLike (hidden)
def getOrElse[V1 >: AnyRef](key: DataFormat, default: => V1): V1

Attributes

Inherited from:
MapOps
def getOrElseUpdate(key: DataFormat, op: => AnyRef): V

Attributes

Inherited from:
MapOps
def groupBy[K](f: ((DataFormat, AnyRef)) => K): Map[K, C]

Attributes

Inherited from:
IterableOps
def groupMap[K, B](key: ((DataFormat, AnyRef)) => K)(f: ((DataFormat, AnyRef)) => B): Map[K, CC[B]]

Attributes

Inherited from:
IterableOps
def groupMapReduce[K, B](key: ((DataFormat, AnyRef)) => K)(f: ((DataFormat, AnyRef)) => B)(reduce: (B, B) => B): Map[K, B]

Attributes

Inherited from:
IterableOps
def grouped(size: Int): Iterator[C]

Attributes

Inherited from:
IterableOps
override def hashCode: Int

Attributes

Returns

The delegate hashcode

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
def head: A

Attributes

Inherited from:
IterableOps
def headOption: Option[A]

Attributes

Inherited from:
IterableOps
def init: C

Attributes

Inherited from:
IterableOps
def inits: Iterator[C]

Attributes

Inherited from:
IterableOps
def isDefinedAt(key: DataFormat): Boolean

Attributes

Inherited from:
MapOps

Attributes

Inherited from:
IterableOnceOps
override def isTraversableAgain: Boolean

Attributes

Definition Classes
Inherited from:
IterableOps

Attributes

Definition Classes
Inherited from:
Iterable
def iterator: Iterator[(A, B)]

Attributes

Inherited from:
JMapWrapperLike (hidden)
def keySet: Set[K]

Attributes

Inherited from:
MapOps
def keyStepper[S <: Stepper[_]](implicit shape: StepperShape[DataFormat, S]): S

Attributes

Inherited from:
MapOps
def keys: Iterable[K]

Attributes

Inherited from:
MapOps

Attributes

Inherited from:
MapOps
override def knownSize: Int

Attributes

Definition Classes
Inherited from:
MapOps
def last: A

Attributes

Inherited from:
IterableOps
def lastOption: Option[A]

Attributes

Inherited from:
IterableOps

Attributes

Inherited from:
Iterable
def lift: A => Option[B]

Attributes

Inherited from:
PartialFunction
def map[B](f: ((DataFormat, AnyRef)) => B): CC[B]

Attributes

Inherited from:
IterableOps
def map[K2, V2](f: ((DataFormat, AnyRef)) => (K2, V2)): CC[K2, V2]

Attributes

Inherited from:
MapOps
override def mapFactory: MapFactory[Map]

Attributes

Definition Classes
Map -> Map -> MapOps
Inherited from:
Map
def mapResult[NewTo](f: Map[DataFormat, AnyRef] => NewTo): Builder[A, NewTo]

Attributes

Inherited from:
Builder
def mapValuesInPlace(f: (DataFormat, AnyRef) => AnyRef): MapOps.this.type

Attributes

Inherited from:
MapOps
def max[B >: (DataFormat, AnyRef)](implicit ord: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def maxBy[B](f: ((DataFormat, AnyRef)) => B)(implicit cmp: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def maxByOption[B](f: ((DataFormat, AnyRef)) => B)(implicit cmp: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
def maxOption[B >: (DataFormat, AnyRef)](implicit ord: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
def min[B >: (DataFormat, AnyRef)](implicit ord: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def minBy[B](f: ((DataFormat, AnyRef)) => B)(implicit cmp: Ordering[B]): A

Attributes

Inherited from:
IterableOnceOps
def minByOption[B](f: ((DataFormat, AnyRef)) => B)(implicit cmp: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
def minOption[B >: (DataFormat, AnyRef)](implicit ord: Ordering[B]): Option[A]

Attributes

Inherited from:
IterableOnceOps
final def mkString: String

Attributes

Inherited from:
IterableOnceOps
final def mkString(sep: String): String

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps
override protected def newSpecificBuilder: Builder[(K, V), CC[K, V]]

Attributes

Definition Classes
Inherited from:
MapFactoryDefaults

Attributes

Inherited from:
IterableOnceOps
def orElse[A1 <: DataFormat, B1 >: AnyRef](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]

Attributes

Inherited from:
PartialFunction
def partition(p: ((DataFormat, AnyRef)) => Boolean): (C, C)

Attributes

Inherited from:
IterableOps
def partitionMap[A1, A2](f: ((DataFormat, AnyRef)) => Either[A1, A2]): (CC[A1], CC[A2])

Attributes

Inherited from:
IterableOps
def product[B >: (DataFormat, AnyRef)](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
override def put(k: DataFormat, v: AnyRef): Option[B]

Attributes

Definition Classes
JMapWrapperLike -> MapOps
Inherited from:
JMapWrapperLike (hidden)
def reduce[B >: (DataFormat, AnyRef)](op: (B, B) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceLeft[B >: (DataFormat, AnyRef)](op: (B, (DataFormat, AnyRef)) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceLeftOption[B >: (DataFormat, AnyRef)](op: (B, (DataFormat, AnyRef)) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
def reduceOption[B >: (DataFormat, AnyRef)](op: (B, B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
def reduceRight[B >: (DataFormat, AnyRef)](op: ((DataFormat, AnyRef), B) => B): B

Attributes

Inherited from:
IterableOnceOps
def reduceRightOption[B >: (DataFormat, AnyRef)](op: ((DataFormat, AnyRef), B) => B): Option[B]

Attributes

Inherited from:
IterableOnceOps
override def remove(k: DataFormat): Option[B]

Attributes

Definition Classes
JMapWrapperLike -> MapOps
Inherited from:
JMapWrapperLike (hidden)
def result(): C

Attributes

Inherited from:
MapOps
protected def reversed: Iterable[A]

Attributes

Inherited from:
IterableOnceOps
def runWith[U](action: AnyRef => U): A => Boolean

Attributes

Inherited from:
PartialFunction

Attributes

Inherited from:
Cloneable
def scan[B >: (DataFormat, AnyRef)](z: B)(op: (B, B) => B): CC[B]

Attributes

Inherited from:
IterableOps
def scanLeft[B](z: B)(op: (B, (DataFormat, AnyRef)) => B): CC[B]

Attributes

Inherited from:
IterableOps
def scanRight[B](z: B)(op: ((DataFormat, AnyRef), B) => B): CC[B]

Attributes

Inherited from:
IterableOps
override def size: Int

Attributes

Definition Classes
JMapWrapperLike -> IterableOnceOps
Inherited from:
JMapWrapperLike (hidden)

Attributes

Inherited from:
IterableOps

Attributes

Inherited from:
IterableOps
final def sizeHint(coll: IterableOnce[_], delta: Int): Unit

Attributes

Inherited from:
Builder

Attributes

Inherited from:
Builder

Attributes

Inherited from:
Builder
final def sizeIs: SizeCompareOps

Attributes

Inherited from:
IterableOps
def slice(from: Int, until: Int): C

Attributes

Inherited from:
IterableOps

Attributes

Inherited from:
IterableOps
def sliding(size: Int): Iterator[C]

Attributes

Inherited from:
IterableOps
def span(p: ((DataFormat, AnyRef)) => Boolean): (C, C)

Attributes

Inherited from:
IterableOps
override def splitAt(n: Int): (C, C)

Attributes

Definition Classes
Inherited from:
IterableOps
def stepper[S <: Stepper[_]](implicit shape: StepperShape[(DataFormat, AnyRef), S]): S

Attributes

Inherited from:
IterableOnce
def subtractAll(xs: IterableOnce[DataFormat]): Shrinkable.this.type

Attributes

Inherited from:
Shrinkable
override def subtractOne(key: DataFormat): JMapWrapperLike.this.type

Attributes

Definition Classes
JMapWrapperLike -> Shrinkable
Inherited from:
JMapWrapperLike (hidden)
def sum[B >: (DataFormat, AnyRef)](implicit num: Numeric[B]): B

Attributes

Inherited from:
IterableOnceOps
def tail: C

Attributes

Inherited from:
IterableOps
def tails: Iterator[C]

Attributes

Inherited from:
IterableOps
def take(n: Int): C

Attributes

Inherited from:
IterableOps
def takeRight(n: Int): C

Attributes

Inherited from:
IterableOps
def takeWhile(p: ((DataFormat, AnyRef)) => Boolean): C

Attributes

Inherited from:
IterableOps
override def tapEach[U](f: ((DataFormat, AnyRef)) => U): C

Attributes

Definition Classes
Inherited from:
IterableOps
def to[C1](factory: Factory[(DataFormat, AnyRef), C1]): C1

Attributes

Inherited from:
IterableOnceOps
def toArray[B >: (DataFormat, AnyRef) : ClassTag]: Array[B]

Attributes

Inherited from:
IterableOnceOps
final def toBuffer[B >: (DataFormat, AnyRef)]: Buffer[B]

Attributes

Inherited from:
IterableOnceOps

Attributes

Inherited from:
IterableOnceOps
def toList: List[A]

Attributes

Inherited from:
IterableOnceOps
def toMap[K, V](implicit ev: (DataFormat, AnyRef) <:< (K, V)): Map[K, V]

Attributes

Inherited from:
IterableOnceOps
def toSeq: Seq[A]

Attributes

Inherited from:
IterableOnceOps
def toSet[B >: (DataFormat, AnyRef)]: Set[B]

Attributes

Inherited from:
IterableOnceOps
override def toString: String

Attributes

Returns

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

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
def toVector: Vector[A]

Attributes

Inherited from:
IterableOnceOps
def transpose[B](implicit asIterable: ((DataFormat, AnyRef)) => Iterable[B]): CC[CC[B]]

Attributes

Inherited from:
IterableOps
def unapply(a: DataFormat): Option[B]

Attributes

Inherited from:
PartialFunction
def unzip[A1, A2](implicit asPair: ((DataFormat, AnyRef)) => (A1, A2)): (CC[A1], CC[A2])

Attributes

Inherited from:
IterableOps
def unzip3[A1, A2, A3](implicit asTriple: ((DataFormat, AnyRef)) => (A1, A2, A3)): (CC[A1], CC[A2], CC[A3])

Attributes

Inherited from:
IterableOps
override def update(k: DataFormat, v: AnyRef): Unit

Attributes

Definition Classes
JMapWrapperLike -> MapOps
Inherited from:
JMapWrapperLike (hidden)
def updateWith(key: DataFormat)(remappingFunction: Option[AnyRef] => Option[AnyRef]): Option[V]

Attributes

Inherited from:
MapOps
def valueStepper[S <: Stepper[_]](implicit shape: StepperShape[AnyRef, S]): S

Attributes

Inherited from:
MapOps
def values: Iterable[V]

Attributes

Inherited from:
MapOps

Attributes

Inherited from:
MapOps
override def view: MapView[K, V]

Attributes

Definition Classes
Inherited from:
MapOps
def withDefault(d: DataFormat => AnyRef): Map[K, V]

Attributes

Inherited from:
Map
def withDefaultValue(d: AnyRef): Map[K, V]

Attributes

Inherited from:
Map
override def withFilter(p: ((DataFormat, AnyRef)) => Boolean): WithFilter[K, V, WithFilterCC, CC]

Attributes

Definition Classes
Inherited from:
MapFactoryDefaults
def zip[B](that: IterableOnce[B]): CC[(A, B)]

Attributes

Inherited from:
IterableOps
def zipAll[A1 >: (DataFormat, AnyRef), B](that: Iterable[B], thisElem: A1, thatElem: B): CC[(A1, B)]

Attributes

Inherited from:
IterableOps
def zipWithIndex: CC[(A, Int)]

Attributes

Inherited from:
IterableOps

Deprecated and Inherited methods

def +[V1 >: AnyRef](elem1: (DataFormat, V1), elem2: (DataFormat, V1), elems: (DataFormat, V1)*): CC[K, V1]

Attributes

Deprecated
[Since version 2.13.0] Use ++ with an explicit collection argument instead of + with varargs
Inherited from:
MapOps
def +[V1 >: AnyRef](kv: (DataFormat, V1)): CC[K, V1]

Attributes

Deprecated
[Since version 2.13.0] Consider requiring an immutable Map or fall back to Map.concat.
Inherited from:
MapOps
def ++:[B >: (DataFormat, AnyRef)](that: IterableOnce[B]): CC[B]

Attributes

Deprecated
[Since version 2.13.0] Use ++ instead of ++: for collections of type Iterable
Inherited from:
IterableOps
def ++:[V1 >: AnyRef](that: IterableOnce[(DataFormat, V1)]): CC[K, V1]

Attributes

Deprecated
[Since version 2.13.0] Use ++ instead of ++: for collections of type Iterable
Inherited from:
MapOps
final def +=(elem1: (DataFormat, AnyRef), elem2: (DataFormat, AnyRef), elems: (DataFormat, AnyRef)*): Growable.this.type

Attributes

Deprecated
[Since version 2.13.0] Use `++=` aka `addAll` instead of varargs `+=`; infix operations with an operand of multiple args will be deprecated
Inherited from:
Growable
final def -(key1: DataFormat, key2: DataFormat, keys: DataFormat*): C

Attributes

Deprecated
[Since version 2.13.0] Use -- or removeAll on an immutable Map
Inherited from:
MapOps
final def -(key: DataFormat): C

Attributes

Deprecated
[Since version 2.13.0] Use - or remove on an immutable Map
Inherited from:
MapOps
def --(keys: IterableOnce[DataFormat]): C

Attributes

Deprecated
[Since version 2.13.0] Consider requiring an immutable Map.
Inherited from:
MapOps
def -=(elem1: DataFormat, elem2: DataFormat, elems: DataFormat*): Shrinkable.this.type

Attributes

Deprecated
[Since version 2.13.3] Use `--=` aka `subtractAll` instead of varargs `-=`; infix operations with an operand of multiple args will be deprecated
Inherited from:
Shrinkable
final def /:[B](z: B)(op: (B, (DataFormat, AnyRef)) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldLeft instead of /:
Inherited from:
IterableOnceOps
final def :\[B](z: B)(op: ((DataFormat, AnyRef), B) => B): B

Attributes

Deprecated
[Since version 2.13.0] Use foldRight instead of :\\
Inherited from:
IterableOnceOps
def aggregate[B](z: => B)(seqop: (B, (DataFormat, AnyRef)) => B, combop: (B, B) => B): B

Attributes

Deprecated
[Since version 2.13.0] `aggregate` is not relevant for sequential collections. Use `foldLeft(z)(seqop)` instead.
Inherited from:
IterableOnceOps

Attributes

Deprecated
[Since version 2.13.0] Use iterableFactory instead
Inherited from:
IterableOps
final def copyToBuffer[B >: (DataFormat, AnyRef)](dest: Buffer[B]): Unit

Attributes

Deprecated
[Since version 2.13.0] Use `dest ++= coll` instead
Inherited from:
IterableOnceOps
def filterKeys(p: DataFormat => Boolean): MapView[K, V]

Attributes

Deprecated
[Since version 2.13.0] Use .view.filterKeys(f). A future version will include a strict version of this method (for now, .view.filterKeys(p).toMap).
Inherited from:
MapOps

Attributes

Deprecated
[Since version 2.13.0] Check .knownSize instead of .hasDefiniteSize for more actionable information (see scaladoc for details)
Inherited from:
IterableOnceOps
def mapValues[W](f: AnyRef => W): MapView[K, W]

Attributes

Deprecated
[Since version 2.13.0] Use .view.mapValues(f). A future version will include a strict version of this method (for now, .view.mapValues(f).toMap).
Inherited from:
MapOps
final def repr: C

Attributes

Deprecated
[Since version 2.13.0] Use coll instead of repr in a collection implementation, use the collection value itself from the outside
Inherited from:
IterableOps
final def retain(p: (DataFormat, AnyRef) => Boolean): MapOps.this.type

Attributes

Deprecated
[Since version 2.13.0] Use filterInPlace instead
Inherited from:
MapOps
def seq: Iterable.this.type

Attributes

Deprecated
[Since version 2.13.0] Iterable.seq always returns the iterable itself
Inherited from:
Iterable
final def toIterable: Iterable.this.type

Attributes

Deprecated
[Since version 2.13.7] toIterable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections
Inherited from:
Iterable
final def toIterator: Iterator[A]

Attributes

Deprecated
[Since version 2.13.0] Use .iterator instead of .toIterator
Inherited from:
IterableOnceOps
final def toStream: Stream[A]

Attributes

Deprecated
[Since version 2.13.0] Use .to(LazyList) instead of .toStream
Inherited from:
IterableOnceOps
final def toTraversable: Iterable[A]

Attributes

Deprecated
[Since version 2.13.0] toTraversable is internal and will be made protected; its name is similar to `toList` or `toSeq`, but it doesn\'t copy non-immutable collections
Inherited from:
IterableOps
final def transform(f: (DataFormat, AnyRef) => AnyRef): MapOps.this.type

Attributes

Deprecated
[Since version 2.13.0] Use mapValuesInPlace instead
Inherited from:
MapOps
def updated[V1 >: AnyRef](key: DataFormat, value: V1): CC[K, V1]

Attributes

Deprecated
[Since version 2.13.0] Use m.clone().addOne((k,v)) instead of m.updated(k, v)
Inherited from:
MapOps
def view(from: Int, until: Int): View[A]

Attributes

Deprecated
[Since version 2.13.0] Use .view.slice(from, until) instead of .view(from, until)
Inherited from:
IterableOps

Concrete fields

override val delegate: ClipboardContent

JavaFX object to be wrapped.

JavaFX object to be wrapped.

Attributes