Interface BlockBlobConfiguration

All Superinterfaces:
FeatureConfiguration, Wrapper

@NullMarked @AsOf("3.0.0") public interface BlockBlobConfiguration extends FeatureConfiguration
A block blob.
Since:
3.0.0
  • Method Details

    • state

      @AsOf("3.0.0") BlockData state()
      The block state that makes up the blob.
      Returns:
      the block state
      Since:
      3.0.0
    • canPlaceOn

      @AsOf("3.0.0") BlockPredicate canPlaceOn()
      The block predicate that must be passed for the blob to be placed on a block.
      Returns:
      the placement predicate
      Since:
      3.0.0
    • toBuilder

      @AsOf("3.0.0") default BlockBlobConfiguration.Builder toBuilder()
      Creates a new builder from this configuration.
      Returns:
      a new builder with the same values as this configuration
      Since:
      3.0.0
    • of

      @AsOf("3.0.0") static BlockBlobConfiguration of(BlockData state, BlockPredicate canPlaceOn)
      Creates a new block blob configuration.
      Parameters:
      state - the block state that makes up the blob
      canPlaceOn - the block predicate that must be passed for the blob to be placed on a block
      Returns:
      a new block blob configuration
      Since:
      3.0.0
    • builder

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