Module org.snapfx
Package org.snapfx

Enum Class DockUserAgentThemeMode

java.lang.Object
java.lang.Enum<DockUserAgentThemeMode>
org.snapfx.DockUserAgentThemeMode
All Implemented Interfaces:
Serializable, Comparable<DockUserAgentThemeMode>, Constable

public enum DockUserAgentThemeMode extends Enum<DockUserAgentThemeMode>
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.

  • Enum Constant Details

    • AUTO

      public static final DockUserAgentThemeMode AUTO
      Detect the active global JavaFX user-agent stylesheet and enable compatibility automatically when an AtlantaFX stylesheet is detected.
    • MODENA

      public static final DockUserAgentThemeMode MODENA
      Force Modena-style behavior by disabling the compatibility layer.
    • ATLANTAFX_COMPAT

      public static final DockUserAgentThemeMode ATLANTAFX_COMPAT
      Force the compatibility layer regardless of the currently active user-agent stylesheet.
  • Method Details

    • values

      public static DockUserAgentThemeMode[] 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

      public static DockUserAgentThemeMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null