Module com.samskivert.jmustache
Package com.samskivert.mustache
Interface Mustache.StandaloneSection
-
- All Superinterfaces:
Mustache.BlockReplaceable
- All Known Implementing Classes:
Mustache.AbstractSectionSegment
,Mustache.BlockSegment
,Mustache.InvertedSegment
,Mustache.ParentTemplateSegment
,Mustache.SectionSegment
- Enclosing class:
- Mustache
protected static interface Mustache.StandaloneSection extends Mustache.BlockReplaceable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Template.Segment[]
_segs()
default boolean
firstLeadsBlank()
boolean
isStandaloneEnd()
boolean
isStandaloneStart()
default boolean
lastTrailsBlank()
void
standaloneEnd(boolean standaloneEnd)
void
standaloneStart(boolean standaloneStart)
default void
trimFirstBlank()
default void
trimLastBlank()
-
Methods inherited from interface com.samskivert.mustache.Mustache.BlockReplaceable
replaceBlocks
-
-
-
-
Method Detail
-
firstLeadsBlank
default boolean firstLeadsBlank()
-
trimFirstBlank
default void trimFirstBlank()
-
lastTrailsBlank
default boolean lastTrailsBlank()
-
trimLastBlank
default void trimLastBlank()
-
isStandaloneEnd
boolean isStandaloneEnd()
-
isStandaloneStart
boolean isStandaloneStart()
-
standaloneStart
void standaloneStart(boolean standaloneStart)
-
standaloneEnd
void standaloneEnd(boolean standaloneEnd)
-
_segs
Template.Segment[] _segs()
-
-