Package org.apache.poi.hwpf.model
Class PropertyNode<T extends PropertyNode<T>>
java.lang.Object
org.apache.poi.hwpf.model.PropertyNode<T>
- All Implemented Interfaces:
Comparable<T>,org.apache.poi.common.Duplicatable
- Direct Known Subclasses:
BytePropertyNode,GenericPropertyNode,SEPX,TextPiece
@Internal
public abstract class PropertyNode<T extends PropertyNode<T>>
extends Object
implements Comparable<T>, org.apache.poi.common.Duplicatable
Represents a lightweight node in the Trees used to store content
properties.
This only ever works in characters. For the few odd cases when
the start and end aren't in characters (eg PAPX and CHPX), use
BytePropertyNode between you and this.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Comparator<PropertyNode<?>> static final Comparator<PropertyNode<?>> -
Method Summary
Modifier and TypeMethodDescriptionvoidadjustForDelete(int start, int length) Adjust for a deletion that can span multiple PropertyNodes.intUsed for sorting in collections.abstract PropertyNode<?> copy()booleanintgetEnd()intgetStart()inthashCode()voidsetEnd(int end) voidsetStart(int start)
-
Field Details
-
EndComparator
-
StartComparator
-
-
Method Details
-
getStart
public int getStart()- Returns:
- The start offset of this property's text.
-
setStart
public void setStart(int start) -
getEnd
public int getEnd()- Returns:
- The offset of the end of this property's text.
-
setEnd
public void setEnd(int end) -
adjustForDelete
public void adjustForDelete(int start, int length) Adjust for a deletion that can span multiple PropertyNodes. -
hashCode
public int hashCode() -
equals
-
copy
- Specified by:
copyin interfaceorg.apache.poi.common.Duplicatable
-
compareTo
Used for sorting in collections.- Specified by:
compareToin interfaceComparable<T extends PropertyNode<T>>
-