Class Evaluate
- java.lang.Object
-
- org.daisy.dotify.formatter.impl.segment.Evaluate
-
- All Implemented Interfaces:
FollowingText
,PrecedingText
,ResolvableText
,Segment
public class Evaluate extends Object implements Segment
Provides an evaluate event object.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.daisy.dotify.formatter.impl.segment.Segment
Segment.SegmentType
-
-
Constructor Summary
Constructors Constructor Description Evaluate(DynamicContent expression, TextProperties props)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
DynamicContent
getExpression()
Optional<String>
getLocale()
Segment.SegmentType
getSegmentType()
int
hashCode()
boolean
isStatic()
Returns true if this item does not change.String
peek()
Peeks the value of this item.String
resolve()
Resolves the item.void
setResolver(Function<Evaluate,String> v)
boolean
shouldHyphenate()
boolean
shouldMarkCapitalLetters()
-
-
-
Constructor Detail
-
Evaluate
public Evaluate(DynamicContent expression, TextProperties props)
- Parameters:
expression
- the expressionprops
- the text properties
-
-
Method Detail
-
getExpression
public DynamicContent getExpression()
-
getSegmentType
public Segment.SegmentType getSegmentType()
- Specified by:
getSegmentType
in interfaceSegment
-
peek
public String peek()
Description copied from interface:ResolvableText
Peeks 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:
peek
in interfaceFollowingText
- Specified by:
peek
in interfaceResolvableText
- Returns:
- the value, never null
-
resolve
public String resolve()
Description copied from interface:ResolvableText
Resolves 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:
resolve
in interfacePrecedingText
- Specified by:
resolve
in interfaceResolvableText
- Returns:
- the value, never null
-
isStatic
public boolean isStatic()
Description copied from interface:FollowingText
Returns true if this item does not change.- Specified by:
isStatic
in interfaceFollowingText
- Returns:
- true if this item is static, false otherwise
-
shouldHyphenate
public boolean shouldHyphenate()
- Specified by:
shouldHyphenate
in interfaceSegment
-
shouldMarkCapitalLetters
public boolean shouldMarkCapitalLetters()
- Specified by:
shouldMarkCapitalLetters
in interfaceSegment
-
-