- All Implemented Interfaces:
Serializable,Comparable<DockUserAgentThemeMode>,Constable
Controls how SnapFX applies optional user-agent-theme compatibility adjustments.
The compatibility layer is intended for external user-agent stylesheets (for example AtlantaFX) while keeping Modena as the default baseline.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionForce the compatibility layer regardless of the currently active user-agent stylesheet.Detect the active global JavaFX user-agent stylesheet and enable compatibility automatically when an AtlantaFX stylesheet is detected.Force Modena-style behavior by disabling the compatibility layer. -
Method Summary
Modifier and TypeMethodDescriptionstatic DockUserAgentThemeModeReturns the enum constant of this class with the specified name.static DockUserAgentThemeMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AUTO
Detect the active global JavaFX user-agent stylesheet and enable compatibility automatically when an AtlantaFX stylesheet is detected. -
MODENA
Force Modena-style behavior by disabling the compatibility layer. -
ATLANTAFX_COMPAT
Force the compatibility layer regardless of the currently active user-agent stylesheet.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-