Interface CategoryAccessor.CategoryBuilder<T,B extends CategoryAccessor.CategoryBuilder<T,B>>

Type Parameters:
T - The type of the category.
B - The builder to return in order to be able to apply multiple build operations.
Enclosing interface:
CategoryAccessor<T>

public static interface CategoryAccessor.CategoryBuilder<T,B extends CategoryAccessor.CategoryBuilder<T,B>>
Provides a builder method for a category property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    withCategory(T aCategory)
    Sets the category for the category property.
  • Method Details

    • withCategory

      B withCategory(T aCategory)
      Sets the category for the category property.
      Parameters:
      aCategory - The category to be stored by the category property.
      Returns:
      The builder for applying multiple build operations.