Enum WindowMode

    • Enum Constant Detail

      • FLAT

        public static final WindowMode FLAT
        Flat windows have a caption bar that contains the app title and standard system buttons.
      • TAB

        public static final WindowMode TAB
        Tab windows can be grouped in a tab group. They have a tab caption bar, which contains window tabs, as well as standard system buttons.
    • Method Detail

      • values

        public static WindowMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (WindowMode c : WindowMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WindowMode valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
        NullPointerException - if the argument is null