Class AnchorSegment
- java.lang.Object
-
- org.daisy.dotify.formatter.impl.segment.AnchorSegment
-
- All Implemented Interfaces:
FollowingText,PrecedingText,ResolvableText,Segment
public class AnchorSegment extends Object implements Segment
TODO: Write java doc.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.daisy.dotify.formatter.impl.segment.Segment
Segment.SegmentType
-
-
Constructor Summary
Constructors Constructor Description AnchorSegment(String referenceID)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetReferenceID()Segment.SegmentTypegetSegmentType()booleanisStatic()Returns true if this item does not change.Stringpeek()Peeks the value of this item.Stringresolve()Resolves the item.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.daisy.dotify.formatter.impl.segment.Segment
getLocale, shouldHyphenate, shouldMarkCapitalLetters
-
-
-
-
Constructor Detail
-
AnchorSegment
public AnchorSegment(String referenceID)
-
-
Method Detail
-
getSegmentType
public Segment.SegmentType getSegmentType()
- Specified by:
getSegmentTypein interfaceSegment
-
getReferenceID
public String getReferenceID()
-
peek
public String peek()
Description copied from interface:ResolvableTextPeeks the value of this item. The returned string may be different from call to call.Note that after a call to
ResolvableText.resolve(), this method should consistently return the same result.- Specified by:
peekin interfaceFollowingText- Specified by:
peekin interfaceResolvableText- Returns:
- the value, never null
-
resolve
public String resolve()
Description copied from interface:ResolvableTextResolves the item. Once the value has been resolved, it cannot change between calls in the same context. This applies to bothResolvableText.peek()andResolvableText.resolve().- Specified by:
resolvein interfacePrecedingText- Specified by:
resolvein interfaceResolvableText- Returns:
- the value, never null
-
isStatic
public boolean isStatic()
Description copied from interface:FollowingTextReturns true if this item does not change.- Specified by:
isStaticin interfaceFollowingText- Returns:
- true if this item is static, false otherwise
-
-