com.github.thorbenkuck.keller.repository.WayPointImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keller-repo Show documentation
Show all versions of keller-repo Show documentation
Keller is a universal base-package
The newest version!
package com.github.thorbenkuck.keller.repository;
class WayPointImpl implements WayPoint {
private final ActionStack actionStack;
WayPointImpl(final ActionStack actionStack) {
this.actionStack = actionStack;
}
@Override
public Finalizer otherwise() {
return new FinalizerImpl<>(actionStack);
}
@Override
public void now() {
new FinalizerImpl<>(actionStack).getAny();
}
@Override
public NotPresentHandler andThen() {
return new NotPresentHandlerImpl<>(actionStack);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy