Interface VisibleAccessor.VisibleBuilder<B extends VisibleAccessor.VisibleBuilder<B>>

Type Parameters:
B - The builder to return in order to be able to apply multiple build operations.
Enclosing interface:
VisibleAccessor

public static interface VisibleAccessor.VisibleBuilder<B extends VisibleAccessor.VisibleBuilder<B>>
Provides a builder method for a visible property returning the builder for applying multiple build operations.
  • Method Summary

    Modifier and Type
    Method
    Description
    default B
    Sets the visibility for the visible property.
    default B
    Sets the visibility for the visible property.
    withVisible(boolean isVisible)
    Sets the visibility for the visible property.
  • Method Details

    • withShow

      default B withShow()
      Sets the visibility for the visible property.
      Returns:
      The builder for applying multiple build operations.
    • withHide

      default B withHide()
      Sets the visibility for the visible property.
      Returns:
      The builder for applying multiple build operations.
    • withVisible

      B withVisible(boolean isVisible)
      Sets the visibility for the visible property.
      Parameters:
      isVisible - The visibility to be stored by the visibility property.
      Returns:
      The builder for applying multiple build operations.