com.dua3.utility.fx.controls.FileDialogMode Maven / Gradle / Ivy
package com.dua3.utility.fx.controls;
/**
* Enumeration representing the different modes of a file dialog.
*/
public enum FileDialogMode {
/**
* Represents the mode of a file dialog where the user can open an existing file.
*/
OPEN,
/**
* Mode of the file dialog that allows the user to save a file.
*/
SAVE,
/**
* Mode representing directory selection in a file dialog.
*/
DIRECTORY
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy