Package io.markdom.model
Interface MarkdomOrderedListBlock
-
- All Superinterfaces:
MarkdomBlock,MarkdomListBlock,MarkdomNode
public interface MarkdomOrderedListBlock extends MarkdomListBlock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MarkdomOrderedListBlockaddListItem(MarkdomListItem listItem)MarkdomOrderedListBlockaddListItems(MarkdomListItem... listItems)MarkdomOrderedListBlockaddListItems(Iterable<MarkdomListItem> listItems)default MarkdomBlockTypegetBlockType()default MarkdomListBlockTypegetListBlockType()IntegergetStartIndex()default <Result> Resultselect(MarkdomBlockSelection<Result> selection)default <Result> Resultselect(MarkdomListBlockSelection<Result> selection)MarkdomOrderedListBlocksetStartIndex(Integer startIndex)-
Methods inherited from interface io.markdom.model.MarkdomBlock
choose, getNodeType, getParent, select
-
Methods inherited from interface io.markdom.model.MarkdomListBlock
choose, getChildren, getListItems
-
Methods inherited from interface io.markdom.model.MarkdomNode
choose, countChildren, getDocument, getFactory, getIndex, hasChildren, hasDocument, hasParent
-
-
-
-
Method Detail
-
getBlockType
default MarkdomBlockType getBlockType()
- Specified by:
getBlockTypein interfaceMarkdomBlock
-
getListBlockType
default MarkdomListBlockType getListBlockType()
- Specified by:
getListBlockTypein interfaceMarkdomListBlock
-
getStartIndex
Integer getStartIndex()
-
setStartIndex
MarkdomOrderedListBlock setStartIndex(Integer startIndex)
-
addListItem
MarkdomOrderedListBlock addListItem(MarkdomListItem listItem)
- Specified by:
addListItemin interfaceMarkdomListBlock
-
addListItems
MarkdomOrderedListBlock addListItems(MarkdomListItem... listItems)
- Specified by:
addListItemsin interfaceMarkdomListBlock
-
addListItems
MarkdomOrderedListBlock addListItems(Iterable<MarkdomListItem> listItems)
- Specified by:
addListItemsin interfaceMarkdomListBlock
-
select
default <Result> Result select(MarkdomBlockSelection<Result> selection)
- Specified by:
selectin interfaceMarkdomBlock
-
select
default <Result> Result select(MarkdomListBlockSelection<Result> selection)
- Specified by:
selectin interfaceMarkdomListBlock
-
-