Package ai.extend.types
Interface Block._FinalStage
-
- All Known Implementing Classes:
Block.Builder
- Enclosing class:
- Block
public static interface Block._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Block._FinalStageaddAllPolygon(java.util.List<BlockPolygonItem> polygon)Block._FinalStageaddPolygon(BlockPolygonItem polygon)Blockbuild()Block._FinalStagechildren(java.util.List<Block> children)Block._FinalStagechildren(java.util.Optional<java.util.List<Block>> children)An array of child blocks.Block._FinalStageparentBlockId(java.lang.String parentBlockId)Block._FinalStageparentBlockId(java.util.Optional<java.lang.String> parentBlockId)The ID of the parent block.Block._FinalStagepolygon(java.util.List<BlockPolygonItem> polygon)An array of points defining the polygon that bounds the block.
-
-
-
Method Detail
-
build
Block build()
-
parentBlockId
Block._FinalStage parentBlockId(java.util.Optional<java.lang.String> parentBlockId)
The ID of the parent block. For example, for a table cell block, this would be the ID of the parent table block. Only set if this is a child block.
-
parentBlockId
Block._FinalStage parentBlockId(java.lang.String parentBlockId)
-
polygon
Block._FinalStage polygon(java.util.List<BlockPolygonItem> polygon)
An array of points defining the polygon that bounds the block.
-
addPolygon
Block._FinalStage addPolygon(BlockPolygonItem polygon)
-
addAllPolygon
Block._FinalStage addAllPolygon(java.util.List<BlockPolygonItem> polygon)
-
children
Block._FinalStage children(java.util.Optional<java.util.List<Block>> children)
An array of child blocks. For example, a table block may contain table cell blocks as children when
cellBlocksEnabledis set to true.
-
children
Block._FinalStage children(java.util.List<Block> children)
-
-