Enum Class FullScreenMode

java.lang.Object
java.lang.Enum<FullScreenMode>
com.hp.lft.sdk.web.FullScreenMode
All Implemented Interfaces:
Serializable, Comparable<FullScreenMode>, java.lang.constant.Constable

public enum FullScreenMode extends Enum<FullScreenMode>
Values for the FullScreen(mode) parameter.
  • Enum Constant Details

    • OFF

      public static final FullScreenMode OFF
      Exits Full Screen mode. Does nothing if the browser is already in normal mode.
    • ON

      public static final FullScreenMode ON
      Sets the browser to full screen mode. Does nothing if the browser is already in full screen mode.
    • TOGGLE

      public static final FullScreenMode TOGGLE
      Switches a full screen browser to normal mode or a normal mode browser to full screen.
  • Method Details

    • values

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