io.github.palexdev.mfxcore.enums.SelectionMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of materialfx-all Show documentation
Show all versions of materialfx-all Show documentation
Material Design/Modern components for JavaFX, now packed as a single Jar
package io.github.palexdev.mfxcore.enums;
/**
* Enumeration to distinguish between the two common selection modes, SINGLE and MULTIPLE.
*/
public enum SelectionMode {
SINGLE,
MULTIPLE,
;
}