Spec-Zone .ru
спецификации, руководства, описания, API

JavaFX: Bringing Rich Experiences To All the Screens Of Your Life

Profile: desktop, common

Overview

Converter defines conversion behavior between strings and objects. The type of objects and formats of strings are defined by the subclasses of Converter.

Inherited Variables

Function Summary

public abstract fromString(string: java.lang.String) : java.lang.Object

Converts the string provided into an object defined by the specific converter.

Converts the string provided into an object defined by the specific converter. Format of the string and type of the resulting object is defined by the specific converter.

Parameters
string
Returns
Object
an object representation of the string passed in.
 
public abstract toString(object: java.lang.Object) : java.lang.String

Converts the object provided into its string form.

Converts the object provided into its string form. Format of the returned string is defined by the specific converter.

Parameters
object
Returns
String
a string representation of the object passed in.
 

Inherited Functions