Interface VeryBiasedToBottomHeight

All Superinterfaces:
HeightProvider, Wrapper

@NullMarked @AsOf("3.0.0") public interface VeryBiasedToBottomHeight extends HeightProvider
A height provider biased strongly toward HeightProvider.minInclusive(), with a sharper exponential distribution than BiasedToBottomHeight.
Since:
3.0.0
See Also:
  • Method Details

    • inner

      @AsOf("3.0.0") int inner()
      The bias factor. Values between 1 and max - min (inclusive) are uniformly distributed and values above it follow a sharp exponential distribution.
      Returns:
      the bias factor
      Since:
      3.0.0
    • toBuilder

      @AsOf("3.0.0") default VeryBiasedToBottomHeight.Builder toBuilder()
      Converts this object back to a builder.
      Returns:
      a builder with the same values as this object
      Since:
      3.0.0
    • of

      @AsOf("3.0.0") static VeryBiasedToBottomHeight of(VerticalAnchor minInclusive, VerticalAnchor maxInclusive, int inner)
      Creates a new very-biased-to-bottom height provider.
      Parameters:
      minInclusive - the vertical anchor to use as the minimum height
      maxInclusive - the vertical anchor to use as the maximum height
      inner - the bias factor
      Returns:
      the very-biased-to-bottom height provider
      Since:
      3.0.0
    • builder

      @AsOf("3.0.0") static VeryBiasedToBottomHeight.Builder builder()
      Creates a new builder.
      Returns:
      a new builder
      Since:
      3.0.0