Uses of Class
com.vaadin.flow.shared.ui.LoadMode
-
Packages that use LoadMode Package Description com.vaadin.flow.component.dependency com.vaadin.flow.component.page com.vaadin.flow.shared.ui -
-
Uses of LoadMode in com.vaadin.flow.component.dependency
Methods in com.vaadin.flow.component.dependency that return LoadMode Modifier and Type Method Description LoadMode
loadMode()
Determines the dependency load mode.LoadMode
loadMode()
Determines the dependency load mode. -
Uses of LoadMode in com.vaadin.flow.component.page
Methods in com.vaadin.flow.component.page with parameters of type LoadMode Modifier and Type Method Description void
Page. addJavaScript(String url, LoadMode loadMode)
Adds the given JavaScript to the page and ensures that it is loaded successfully.void
Page. addStyleSheet(String url, LoadMode loadMode)
Adds the given style sheet to the page and ensures that it is loaded successfully. -
Uses of LoadMode in com.vaadin.flow.shared.ui
Methods in com.vaadin.flow.shared.ui that return LoadMode Modifier and Type Method Description LoadMode
Dependency. getLoadMode()
Gets load mode that will be used for dependency loading.static LoadMode
LoadMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static LoadMode[]
LoadMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in com.vaadin.flow.shared.ui with parameters of type LoadMode Constructor Description Dependency(Dependency.Type type, String url, LoadMode loadMode)
Creates a new dependency of the given type, to be loaded from the given URL.
-