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 booleanfirstLeadsBlank()booleanisStandaloneEnd()booleanisStandaloneStart()default booleanlastTrailsBlank()voidstandaloneEnd(boolean standaloneEnd)voidstandaloneStart(boolean standaloneStart)default voidtrimFirstBlank()default voidtrimLastBlank()-
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()
-
-