Package org.zkoss.stateless.function
Interface CheckedConsumer<A>
-
- All Superinterfaces:
java.io.Serializable
- All Known Subinterfaces:
ActionHandler1<A>,ActionType.OnAcrossPage1<A>,ActionType.OnAdjustCols1<A>,ActionType.OnAdjustFrozenCols1<A>,ActionType.OnAdjustRows1<A>,ActionType.OnAfterRender1<A>,ActionType.OnAfterSize1<A>,ActionType.OnAnchorPos1<A>,ActionType.OnBlur1<A>,ActionType.OnBookmarkChange1<A>,ActionType.OnCameraUnavailable1<A>,ActionType.OnCancel1<A>,ActionType.OnCellClick1<A>,ActionType.OnChange1<A>,ActionType.OnChanging1<A>,ActionType.OnCheck1<A>,ActionType.OnCheckSelectAll1<A>,ActionType.OnClear1<A>,ActionType.OnClick1<A>,ActionType.OnClientInfo1<A>,ActionType.OnClose1<A>,ActionType.OnColSize1<A>,ActionType.OnCreate1<A>,ActionType.OnCrop1<A>,ActionType.OnCtrlKey1<A>,ActionType.OnDataLoading1<A>,ActionType.OnDeferredEvaluation1<A>,ActionType.OnDesktopRecycle1<A>,ActionType.OnDetect1<A>,ActionType.OnDivisionSize1<A>,ActionType.OnDoubleClick1<A>,ActionType.OnDrop1<A>,ActionType.OnError1<A>,ActionType.OnFocus1<A>,ActionType.OnFulfill1<A>,ActionType.OnGroup1<A>,ActionType.OnHistoryPopState1<A>,ActionType.OnInnerWidth1<A>,ActionType.OnItemClick1<A>,ActionType.OnLengthLimitExceed1<A>,ActionType.OnMaxFileCountExceed1<A>,ActionType.OnMaximize1<A>,ActionType.OnMaxsizeExceed1<A>,ActionType.OnMinimize1<A>,ActionType.OnModal1<A>,ActionType.OnMouseOut1<A>,ActionType.OnMouseOver1<A>,ActionType.OnMove1<A>,ActionType.OnNotify1<A>,ActionType.OnOK1<A>,ActionType.OnOpen1<A>,ActionType.OnPageSize1<A>,ActionType.OnPaging1<A>,ActionType.OnPiggyback1<A>,ActionType.OnPortalDrop1<A>,ActionType.OnPortalMove1<A>,ActionType.OnRangeValueChange1<A>,ActionType.OnRender1<A>,ActionType.OnRightClick1<A>,ActionType.OnRotate1<A>,ActionType.OnSave1<A>,ActionType.OnScriptError1<A>,ActionType.OnScroll1<A>,ActionType.OnScrolling1<A>,ActionType.OnScrollPos1<A>,ActionType.OnScrollX1<A>,ActionType.OnScrollY1<A>,ActionType.OnSearch1<A>,ActionType.OnSearching1<A>,ActionType.OnSelect1<A>,ActionType.OnSelection1<A>,ActionType.OnSelectSubModel1<A>,ActionType.OnSize1<A>,ActionType.OnSlide1<A>,ActionType.OnSnapshotUpload1<A>,ActionType.OnSort1<A>,ActionType.OnStateChange1<A>,ActionType.OnStub1<A>,ActionType.OnSwipe1<A>,ActionType.OnTargetClick1<A>,ActionType.OnTimer1<A>,ActionType.OnTimeZoneChange1<A>,ActionType.OnTopPad1<A>,ActionType.OnUngroup1<A>,ActionType.OnUpload1<A>,ActionType.OnURIChange1<A>,ActionType.OnUser1<A>,ActionType.OnVisibilityChange1<A>,ActionType.OnWeekClick1<A>,ActionType.OnZIndex1<A>
- 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 CheckedConsumer<A> extends java.io.SerializableRepresents an operation that accepts single argument and returns no result.- Author:
- jumperchen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaccept(A a)default CheckedConsumer<A>andThen(CheckedConsumer<? super A> after)
-
-
-
Method Detail
-
accept
void accept(A a) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
andThen
default CheckedConsumer<A> andThen(CheckedConsumer<? super A> after)
-
-