com.vaadin.flow.internal.
Enum BrowserLiveReload.Backend
- java.lang.Object
-
- java.lang.Enum<BrowserLiveReload.Backend>
-
- com.vaadin.flow.internal.BrowserLiveReload.Backend
-
All Implemented Interfaces:
Enclosing interface:
public static enum BrowserLiveReload.Backend extends Enum<BrowserLiveReload.Backend>
Live reload enabling technology detected.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HOTSWAP_AGENT
JREBEL
SPRING_BOOT_DEVTOOLS
-
Method Summary
All Methods Modifier and Type Method Description static BrowserLiveReload.Backend
valueOf​(String name)
Returns the enum constant of this type with the specified name.
static BrowserLiveReload.Backend[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HOTSWAP_AGENT
public static final BrowserLiveReload.Backend HOTSWAP_AGENT
-
JREBEL
public static final BrowserLiveReload.Backend JREBEL
-
SPRING_BOOT_DEVTOOLS
public static final BrowserLiveReload.Backend SPRING_BOOT_DEVTOOLS
-
-
Method Detail
-
values
public static BrowserLiveReload.Backend[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (BrowserLiveReload.Backend c : BrowserLiveReload.Backend.values()) System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BrowserLiveReload.Backend valueOf​(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-