Interface Action

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Action
  • Method Details

    • of

      static Action of(Action... actions)
    • none

      static Action none()
    • with

      static <T> Action with(Key<T> key, T value)
    • without

      static Action without(Key<?> key)
    • back

      static Action back()
    • back

      static Action back(int depth)
    • hideAll

      static Action hideAll()
    • act

      void act(Window window)