Enum Class App

java.lang.Object
java.lang.Enum<App>
com.vaadin.open.App
All Implemented Interfaces:
Serializable, Comparable<App>, Constable

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

    • CHROME

      public static final App CHROME
    • FIREFOX

      public static final App FIREFOX
    • EDGE

      public static final App EDGE
    • SAFARI

      public static final App SAFARI
    • BRAVE

      public static final App BRAVE
    • OPERA

      public static final App OPERA
  • Method Details

    • values

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