DataFormat

class DataFormat(val delegate: DataFormat) extends SFXDelegate[DataFormat]

Data format identifier used as means of identifying the data stored on a clipboard/dragboard.

Data format identifier used as means of identifying the data stored on a clipboard/dragboard.

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

Value Params
delegate

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

Constructor

Creates a new DataFormat from a JavaFX one.

Companion
object
trait SFXDelegate[DataFormat]
class Object
trait Matchable
class Any

Value members

Constructors

def this(ids: String*)

Create a new DataFormat, specifying the set of ids that are associated with this data format.

Create a new DataFormat, specifying the set of ids that are associated with this data format.

Value Params
ids
  • The set of ids used to represent this DataFormat on the clipboard.

Concrete methods

def identifiers: Set[String]

Gets the unmodifiable set of identifiers for this DataFormat.

Gets the unmodifiable set of identifiers for this DataFormat.

Inherited methods

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
override def hashCode: Int
Returns

The delegate hashcode

Definition Classes
Inherited from
SFXDelegate
override def toString: String
Returns

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

Definition Classes
Inherited from
SFXDelegate

Concrete fields

override val delegate: DataFormat