Module org.refcodes.mixin
Package org.refcodes.mixin
Interface InputStreamAccessor.InputStreamBuilder<B extends InputStreamAccessor.InputStreamBuilder<?>>
-
- Type Parameters:
B
- The builder which implements theInputStreamAccessor.InputStreamBuilder
.
- Enclosing interface:
- InputStreamAccessor
public static interface InputStreamAccessor.InputStreamBuilder<B extends InputStreamAccessor.InputStreamBuilder<?>>
Provides a mutator for an input stream property.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description B
withInputStream(InputStream aInputStream)
Sets the input stream to use and returns this builder as of the Builder-Pattern.
-
-
-
Method Detail
-
withInputStream
B withInputStream(InputStream aInputStream)
Sets the input stream to use and returns this builder as of the Builder-Pattern.- Parameters:
aInputStream
- The input stream to be stored by the input stream property.- Returns:
- This
InputStreamAccessor.InputStreamBuilder
instance to continue configuration.
-
-