Enum Class ScreenBeep

java.lang.Object
java.lang.Enum<ScreenBeep>
eu.ccvlab.mapi.core.api.request.type.ScreenBeep
All Implemented Interfaces:
Serializable, Comparable<ScreenBeep>, Constable

public enum ScreenBeep extends Enum<ScreenBeep>
  • Enum Constant Details

    • NoBeep

      public static final ScreenBeep NoBeep
      Default and used when omitted
    • RequestBeep

      public static final ScreenBeep RequestBeep
      One single beep, approx. 2000 Hz, 100 msec
    • SuccessBeep

      public static final ScreenBeep SuccessBeep
      Three beeps, approx. 2000 Hz, 100 msec, 33 msec interval
    • FailureBeep

      public static final ScreenBeep FailureBeep
      One single beep, approx. 2000 Hz, 1000 msec
  • Constructor Details

    • ScreenBeep

      private ScreenBeep()
  • Method Details

    • values

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