Enum D3Events

    • Enum Constant Detail

      • CLICK

        public static final D3Events CLICK
      • MOUSE_DOWN

        public static final D3Events MOUSE_DOWN
      • KEY_DOWN

        public static final D3Events KEY_DOWN
      • CONTEXT_MENU

        public static final D3Events CONTEXT_MENU
      • DRAG_START

        public static final D3Events DRAG_START
      • DRAG

        public static final D3Events DRAG
      • DRAG_END

        public static final D3Events DRAG_END
      • MOUSE_WHEEL

        public static final D3Events MOUSE_WHEEL
      • MOUSE_OVER

        public static final D3Events MOUSE_OVER
      • MOUSE_OUT

        public static final D3Events MOUSE_OUT
      • DOUBLE_CLICK

        public static final D3Events DOUBLE_CLICK
    • Method Detail

      • values

        public static D3Events[] 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 (D3Events c : D3Events.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static D3Events 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
      • event

        public String event()