Enum Class Mode

java.lang.Object
java.lang.Enum<Mode>
com.vaadin.flow.server.Mode
All Implemented Interfaces:
Serializable, Comparable<Mode>, Constable

public enum Mode extends Enum<Mode>
The mode the application is running in. One of production, development using livereload or development using bundle
  • Enum Constant Details

    • PRODUCTION_CUSTOM

      public static final Mode PRODUCTION_CUSTOM
    • PRODUCTION_PRECOMPILED_BUNDLE

      public static final Mode PRODUCTION_PRECOMPILED_BUNDLE
    • DEVELOPMENT_FRONTEND_LIVERELOAD

      public static final Mode DEVELOPMENT_FRONTEND_LIVERELOAD
    • DEVELOPMENT_BUNDLE

      public static final Mode DEVELOPMENT_BUNDLE
  • Method Details

    • values

      public static Mode[] 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 Mode 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
    • isProduction

      public boolean isProduction()
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Mode>