Interface TailAccessor<T>

Type Parameters:
T - The type of the tail to be used.
All Known Subinterfaces:
TailAccessor.TailProperty<T>

public interface TailAccessor<T>
Provides an accessor for a tail property.
  • Nested Class Summary

    Nested Classes
    Modifier and Type Interface Description
    static interface  TailAccessor.TailBuilder<T,​B extends TailAccessor.TailBuilder<T,​B>>
    Provides a builder method for a tail property returning the builder for applying multiple build operations.
    static interface  TailAccessor.TailMutator<T>
    Provides a mutator for a tail property.
    static interface  TailAccessor.TailProperty<T>
    Provides a tail property.
  • Method Summary

    Modifier and Type Method Description
    T getTail()
    Retrieves the value from the tail property.
  • Method Details

    • getTail

      T getTail()
      Retrieves the value from the tail property.
      Returns:
      The tail stored by the tail property.