Interface NullableBuilder<T>

Type Parameters:
T - Return type of build object.
All Known Subinterfaces:
ContextInfoBuilder
All Known Implementing Classes:
ContextInfoDefaultBuilder, ContextInfoNoopBuilder

public interface NullableBuilder<T>
Nullable builder. Allows return null when object is build.
  • Method Summary

    Modifier and Type
    Method
    Description
    Build an object.
  • Method Details

    • build

      @Nullable T build()
      Build an object.
      Returns:
      Built object or null when nothing is built.