Package com.helger.commons.state
Interface IHandledIndicator
-
- All Known Implementing Classes:
EHandled
public interface IHandledIndicatorVery simple interface for an object that has handled indication.- Since:
- 9.0.0
- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default EHandledand(IHandledIndicator aOther)booleanisHandled()default booleanisUnhandled()default EHandledor(IHandledIndicator aOther)
-
-
-
Method Detail
-
isHandled
boolean isHandled()
- Returns:
trueif handled andfalseif not.
-
isUnhandled
default boolean isUnhandled()
- Returns:
trueif not handled andfalseif so.
-
or
@Nonnull default EHandled or(@Nonnull IHandledIndicator aOther)
-
and
@Nonnull default EHandled and(@Nonnull IHandledIndicator aOther)
-
-