Interface CountConfiguration

All Superinterfaces:
FeatureConfiguration, Wrapper

@NullMarked @AsOf("3.0.0") public interface CountConfiguration extends FeatureConfiguration
A count configuration.
Since:
3.0.0
  • Method Details

    • count

      @AsOf("3.0.0") IntProvider count()
      The count provider.
      Returns:
      the count provider
      Since:
      3.0.0
    • toBuilder

      @AsOf("3.0.0") default CountConfiguration.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 CountConfiguration of(IntProvider count)
      Creates a new count configuration.
      Parameters:
      count - the count provider
      Returns:
      a new count configuration
      Since:
      3.0.0
    • of

      @AsOf("3.0.0") static CountConfiguration of(int count)
      Creates a new constant count configuration.
      Parameters:
      count - the count
      Returns:
      a new count configuration
      Since:
      3.0.0
    • builder

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