scalafx.util.converter
Wraps `javafx.util.converter` package.
Attributes
Members list
Type members
Classlikes
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[BigDecimalStringConverter]class StringConverter[BigDecimal]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[BigIntegerStringConverter]class StringConverter[BigInt]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[BooleanStringConverter]class StringConverter[Boolean]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
ByteStringConverter.type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[ByteStringConverter]class StringConverter[Byte]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
CharStringConverter.type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[CharacterStringConverter]class StringConverter[Char]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- trait
- Supertypes
- Self type
-
ConverterIncludes.type
Contains implicit methods to convert from `javafx.util.converter` Classes to their ScalaFX counterparts.
Contains implicit methods to convert from `javafx.util.converter` Classes to their ScalaFX counterparts.
Attributes
- Companion
- object
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[CurrencyStringConverter]class StringConverter[Number]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
DateStringConverter.type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[DateStringConverter]class StringConverter[Date]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[DateTimeStringConverter]class StringConverter[Date]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[DefaultStringConverter]class StringConverter[String]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[DoubleStringConverter]class StringConverter[Double]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
FloatStringConverter.type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[FloatStringConverter]class StringConverter[Float]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
StringConverter
implementation that can use a Format
instance.
StringConverter
implementation that can use a Format
instance.
Attributes
- Companion
- object
- Supertypes
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
IntStringConverter.type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[IntegerStringConverter]class StringConverter[Int]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
LongStringConverter.type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[LongStringConverter]class StringConverter[Long]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[NumberStringConverter]class StringConverter[Number]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[PercentageStringConverter]class StringConverter[Number]class Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
ShortStringConverter.type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[ShortStringConverter]class StringConverter[Short]class Objecttrait Matchableclass AnyShow all
Class responsible for wrap a StringConverter from a Java type to a Scala type (eg: java.lang.Integer to Int, java.lang.Character to Char). Eventually Java and Scala types can be the same (like java.util.Date or java.lang.Number), so it must be used StringConverterJavaToJavaDelegate class.
Class responsible for wrap a StringConverter from a Java type to a Scala type (eg: java.lang.Integer to Int, java.lang.Character to Char). Eventually Java and Scala types can be the same (like java.util.Date or java.lang.Number), so it must be used StringConverterJavaToJavaDelegate class.
Type parameters
- C
-
JavaFX StringConverter using type J (e.g. javafx.util.converter.IntegerStringConverter, javafx.util.converter.BigIntegerStringConverter, javafx.util.converter.DateStringConverter)
- J
-
Java Class (e.g. java.lang.Integer, java.lang.Number, java.util.BigInteger, java.util.Date)
- S
-
Scala CLass (e.g. Int, BigInt)
Value parameters
- delegate
-
JavaFx StringConverter to be wrapped.
Attributes
- Supertypes
- Known subtypes
-
class DefaultFormatterclass BigIntStringConverterclass BooleanStringConverterclass ByteStringConverterclass CharStringConverterclass DefaultStringConverterclass DoubleStringConverterclass FloatStringConverterclass FormatStringConverter[T]class IntStringConverterclass LongStringConverterclass ShortStringConverterShow all
Class responsible for wrap a StringConverter from and to a Java type(eg: java.util.Date or java.lang.Number).
Class responsible for wrap a StringConverter from and to a Java type(eg: java.util.Date or java.lang.Number).
Type parameters
- C
-
JavaFX StringConverter using type J (e.g. javafx.util.converter.IntegerStringConverter, javafx.util.converter.NumberStringConverter, javafx.util.converter.BigIntegerStringConverter, javafx.util.converter.DateStringConverter)
- J
-
Java Class (e.g. java.lang.Number, java.util.Date)
Value parameters
- delegate
-
JavaFx StringConverter to be wrapped.
Attributes
- Supertypes
Attributes
- Companion
- class
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
TimeStringConverter.type
Attributes
- Companion
- object
- Supertypes
-
trait SFXDelegate[TimeStringConverter]class StringConverter[Date]class Objecttrait Matchableclass AnyShow all