Class MessageBoxButtonType


  • public final class MessageBoxButtonType
    extends java.lang.Object
    Used to specify which buttons should be shown to users in the message box.
    Since:
    1.3.0
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static javafx.scene.control.ButtonType ABORT  
      static javafx.scene.control.ButtonType APPLY
      A pre-defined ButtonType that displays "Apply" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.APPLY.
      static javafx.scene.control.ButtonType CANCEL
      A pre-defined ButtonType that displays "Cancel" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.CANCEL_CLOSE.
      static javafx.scene.control.ButtonType CLOSE
      A pre-defined ButtonType that displays "Close" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.CANCEL_CLOSE.
      static javafx.scene.control.ButtonType CONTINUE  
      static javafx.scene.control.ButtonType FINISH
      A pre-defined ButtonType that displays "Finish" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.FINISH.
      static javafx.scene.control.ButtonType IGNORE  
      static javafx.scene.control.ButtonType NEXT
      A pre-defined ButtonType that displays "Next" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.NEXT_FORWARD.
      static javafx.scene.control.ButtonType NO
      A pre-defined ButtonType that displays "No" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.NO.
      static javafx.scene.control.ButtonType NONE  
      static javafx.scene.control.ButtonType OK
      A pre-defined ButtonType that displays "OK" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.OK_DONE.
      static javafx.scene.control.ButtonType PREVIOUS
      A pre-defined ButtonType that displays "Previous" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.BACK_PREVIOUS.
      static javafx.scene.control.ButtonType RETRY  
      static javafx.scene.control.ButtonType SUBMIT  
      static javafx.scene.control.ButtonType TRYAGAIN  
      static javafx.scene.control.ButtonType YES
      A pre-defined ButtonType that displays "Yes" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.YES.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • APPLY

        public static final javafx.scene.control.ButtonType APPLY
        A pre-defined ButtonType that displays "Apply" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.APPLY.
      • OK

        public static final javafx.scene.control.ButtonType OK
        A pre-defined ButtonType that displays "OK" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.OK_DONE.
      • CANCEL

        public static final javafx.scene.control.ButtonType CANCEL
        A pre-defined ButtonType that displays "Cancel" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.CANCEL_CLOSE.
      • CLOSE

        public static final javafx.scene.control.ButtonType CLOSE
        A pre-defined ButtonType that displays "Close" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.CANCEL_CLOSE.
      • YES

        public static final javafx.scene.control.ButtonType YES
        A pre-defined ButtonType that displays "Yes" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.YES.
      • NO

        public static final javafx.scene.control.ButtonType NO
        A pre-defined ButtonType that displays "No" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.NO.
      • FINISH

        public static final javafx.scene.control.ButtonType FINISH
        A pre-defined ButtonType that displays "Finish" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.FINISH.
      • NEXT

        public static final javafx.scene.control.ButtonType NEXT
        A pre-defined ButtonType that displays "Next" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.NEXT_FORWARD.
      • PREVIOUS

        public static final javafx.scene.control.ButtonType PREVIOUS
        A pre-defined ButtonType that displays "Previous" and has a ButtonBar.ButtonData of ButtonBar.ButtonData.BACK_PREVIOUS.
      • ABORT

        public static final javafx.scene.control.ButtonType ABORT
      • RETRY

        public static final javafx.scene.control.ButtonType RETRY
      • TRYAGAIN

        public static final javafx.scene.control.ButtonType TRYAGAIN
      • IGNORE

        public static final javafx.scene.control.ButtonType IGNORE
      • CONTINUE

        public static final javafx.scene.control.ButtonType CONTINUE
      • SUBMIT

        public static final javafx.scene.control.ButtonType SUBMIT
      • NONE

        public static final javafx.scene.control.ButtonType NONE