Uses of Class
io.github.mmm.ui.api.controller.UiPlace
-
Packages that use UiPlace Package Description io.github.mmm.ui.api.controller io.github.mmm.ui.api.controller.action -
-
Uses of UiPlace in io.github.mmm.ui.api.controller
Fields in io.github.mmm.ui.api.controller declared as UiPlace Modifier and Type Field Description static UiPlace
UiPlace. HOME
The default place to navigate to if the application is started without specifying a customUiPlace
.static UiPlace
UiPlace. NONE
The initial place before the client is initialized by navigating to the first place.Methods in io.github.mmm.ui.api.controller that return UiPlace Modifier and Type Method Description UiPlace
UiNavigationManager. getCurrentPlace()
UiPlace
UiNavigationEvent. getNewPlace()
UiPlace
UiNavigationEvent. getOldPlace()
UiPlace
UiNavigationManager. navigateBack()
This method navigates back in the history to theUiPlace
that has been visited before.UiPlace
UiNavigationManager. navigateForward()
This method navigates forward in the history.static UiPlace
UiPlace. of(String id)
static UiPlace
UiPlace. of(String id, String key, Object value)
static UiPlace
UiPlace. of(String id, String key1, Object value1, String key2, Object value2)
static UiPlace
UiPlace. of(String id, String key1, Object value1, String key2, Object value2, String key3, Object value3)
static UiPlace
UiPlace. parse(String place)
This is the inverse operation oftoString()
.Methods in io.github.mmm.ui.api.controller with parameters of type UiPlace Modifier and Type Method Description default void
UiNavigationManager. navigateTo(UiPlace place)
Navigates to the givenUiPlace
.void
UiNavigationManager. navigateTo(UiPlace place, boolean replace)
Navigates to the givenUiPlace
.void
UiNavigationManager. updatePlace(UiPlace place)
Replaces thecurrent place
with the givenUiPlace
without creating a new entry in the navigation history.Constructors in io.github.mmm.ui.api.controller with parameters of type UiPlace Constructor Description UiNavigationEvent(UiPlace oldPlace, UiPlace newPlace, boolean programmatic)
The constructor. -
Uses of UiPlace in io.github.mmm.ui.api.controller.action
Methods in io.github.mmm.ui.api.controller.action with parameters of type UiPlace Modifier and Type Method Description static UiActionNavigate
UiActionNavigate. of(UiPlace place)
-