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

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

expand all

Profile: desktop, common

Overview

Utility class for accessing and storing name/value pairs.

Profile: common

Inherited Variables

Function Summary

public get(key: java.lang.String) : java.lang.String

Retrieves the value of a name/value pair with the specified name.

Retrieves the value of a name/value pair with the specified name.

Parameters
key
The name of the name/value pair to retrieve.
Returns
String
The value of the name/value pair with the passed key. Returns <code>null</code> if the key does not exist.
 
public load(inputstream: java.io.InputStream) : Void

Load the name/value pairs from the passed input stream.

Load the name/value pairs from the passed input stream.

Parameters
inputstream
The stream from which to load the properties.
 
public put(key: java.lang.String, value: java.lang.String) : Void

Creates the specified name/value pair, or, if it already exists, updates the value for the name/value pair to the value specified.

Creates the specified name/value pair, or, if it already exists, updates the value for the name/value pair to the value specified.

Parameters
key
The name of the name/value pair.
value
The value of the name/value pair.
 
public store(outputstream: java.io.OutputStream) : Void

Stores the properties using the specified output stream.

Stores the properties using the specified output stream.

Parameters
outputstream
The stream to which the properties are stored.
 

Inherited Functions