Interface IWritingContext.ObjectWriter<T extends IFeatureComplexItemValueHandler>
- Enclosing interface:
- IWritingContext<WRITER>
- 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 static interface IWritingContext.ObjectWriter<T extends IFeatureComplexItemValueHandler>
-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(IBoundObject parentItem, T handler) default IWritingContext.ObjectWriter<T>
andThen
(IWritingContext.ObjectWriter<? super T> after) Perform a series of property write operations, starting first with this operation and followed by theafter
operation.
-
Method Details
-
accept
- Throws:
IOException
-
andThen
@NonNull default IWritingContext.ObjectWriter<T> andThen(@NonNull IWritingContext.ObjectWriter<? super T> after) Perform a series of property write operations, starting first with this operation and followed by theafter
operation.- Parameters:
after
- the secondary property write operation to perform- Returns:
- an aggregate property write operation
-