Uses of Interface
com.yahoo.prelude.hitfield.FieldPart
-
Packages that use FieldPart Package Description com.yahoo.prelude.hitfield -
-
Uses of FieldPart in com.yahoo.prelude.hitfield
Classes in com.yahoo.prelude.hitfield that implement FieldPart Modifier and Type Class Description class
AnnotateStringFieldPart
class
BoldCloseFieldPart
Represents an element of a hit property which is markup, representing end of a bolded area.class
BoldOpenFieldPart
Represents an element of a hit property which is markup representing the start of a bolded area.class
ImmutableFieldPart
Represents an element of a hit property which is an immutable string elementclass
MarkupFieldPart
Represents an element of a hit property which is markup, not content.class
SeparatorFieldPart
Represents an element of a hit property which is markup for separating dynamic snippets.class
StringFieldPart
Represents an element of a hit property which is a possibly mutable string elementMethods in com.yahoo.prelude.hitfield that return FieldPart Modifier and Type Method Description FieldPart
FieldIterator. next()
FieldPart
TokenFieldIterator. next()
FieldPart
FieldIterator. previous()
FieldPart
TokenFieldIterator. previous()
Methods in com.yahoo.prelude.hitfield that return types with arguments of type FieldPart Modifier and Type Method Description java.util.List<FieldPart>
HitField. getTokenizedContent()
Get a list representation of the tokens in the content.java.util.ListIterator<FieldPart>
HitField. listIterator()
Return an iterator for the tokens, delimiters and markup elements of the field.java.util.ListIterator<FieldPart>
HitField. tokenIterator()
Return an iterator over the tokens of this fieldMethods in com.yahoo.prelude.hitfield with parameters of type FieldPart Modifier and Type Method Description void
FieldIterator. add(FieldPart o)
void
TokenFieldIterator. add(FieldPart o)
void
FieldIterator. set(FieldPart o)
void
TokenFieldIterator. set(FieldPart o)
Method parameters in com.yahoo.prelude.hitfield with type arguments of type FieldPart Modifier and Type Method Description void
HitField. setTokenizedContent(java.util.List<FieldPart> list)
Only FieldPart objects must be present in the list.Constructor parameters in com.yahoo.prelude.hitfield with type arguments of type FieldPart Constructor Description FieldIterator(java.util.List<FieldPart> fieldList, HitField hitField)
TokenFieldIterator(java.util.List<FieldPart> fieldList, HitField hitField)
-