public final class FileChooserHelper
extends java.lang.Object
FileChooser related functions.| Modifier and Type | Method and Description |
|---|---|
static javafx.stage.FileChooser.ExtensionFilter |
filterFromString(java.lang.String str)
Create an
FileChooser.ExtensionFilter object from a String. |
public static javafx.stage.FileChooser.ExtensionFilter filterFromString(java.lang.String str)
FileChooser.ExtensionFilter object from a String.
The submitted string has to contain at least two tokens separated by the '|' symbol. The first token is used as the filter's description. All following tokens are used as filter extensions (e.g. "Binary data|*.bin|*.dat").
str - The String to use for filter creation.FileChooser.ExtensionFilter object.