Interface SourceAccessor.SourceBuilder<SRC,B extends SourceAccessor.SourceBuilder<SRC,B>>

Type Parameters:
SRC - The type of the source in question.
B - The builder to return in order to be able to apply multiple build operations.
Enclosing interface:
SourceAccessor<SRC>

public static interface SourceAccessor.SourceBuilder<SRC,B extends SourceAccessor.SourceBuilder<SRC,B>>
Provides a builder method for a source property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    withSource(SRC aSource)
    Sets the source for the source property.
  • Method Details

    • withSource

      B withSource(SRC aSource)
      Sets the source for the source property.
      Parameters:
      aSource - The source to be stored by the source property.
      Returns:
      The builder for applying multiple build operations.