Package com.helger.html.hc.impl
Class HCTextNode
- java.lang.Object
-
- com.helger.html.hc.impl.AbstractHCNode
-
- com.helger.html.hc.impl.AbstractHCTextNode<HCTextNode>
-
- com.helger.html.hc.impl.HCTextNode
-
- All Implemented Interfaces:
com.helger.commons.hierarchy.IHasChildren<IHCNode>,com.helger.commons.hierarchy.IHasChildrenRecursive<IHCNode>,com.helger.commons.hierarchy.IHasChildrenSorted<IHCNode>,com.helger.commons.traits.IGenericImplTrait<HCTextNode>,IHCNode,IHCTextNode<HCTextNode>,Serializable
public class HCTextNode extends AbstractHCTextNode<HCTextNode>
Represents a single text node as HC node.- Author:
- Philip Helger
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HCTextNode(char cChar)HCTextNode(char[] aChars)HCTextNode(char[] aChars, int nOfs, int nLen)HCTextNode(int nText)HCTextNode(long nText)HCTextNode(String sText)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HCTextNodecreateOnDemand(char[] aText)static HCTextNodecreateOnDemand(String sText)-
Methods inherited from class com.helger.html.hc.impl.AbstractHCTextNode
appendText, getPlainText, getText, internalConvertToMicroNode, isEscape, prependText, setEscape, setText, toString
-
Methods inherited from class com.helger.html.hc.impl.AbstractHCNode
canConvertToMicroNode, consistencyCheck, convertToMicroNode, customizeNode, finalizeNodeState, findFirstChild, findFirstChildMapped, forAllChildren, forAllChildren, forAllChildrenBreakable, forAllChildrenMapped, getAllChildren, getChildAtIndex, getChildCount, getChildren, getFirstChild, getLastChild, getNodeState, hasChildren, internalSetNodeState, onConsistencyCheck, onCustomizeNode, onFinalizeNodeState, onRegisterExternalResources, registerExternalResources
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.helger.commons.hierarchy.IHasChildren
forAllChildren, forAllChildren, forAllChildrenBreakable, forAllChildrenMapped, getChildCount, getChildren, hasChildren, hasNoChildren
-
Methods inherited from interface com.helger.commons.hierarchy.IHasChildrenRecursive
forAllChildrenRecursive, forAllChildrenRecursive
-
Methods inherited from interface com.helger.commons.hierarchy.IHasChildrenSorted
findFirstChild, findFirstChildMapped, getAllChildren, getChildAtIndex, getFirstChild, getLastChild
-
Methods inherited from interface com.helger.html.hc.IHCNode
canConvertToMicroNode, consistencyCheck, convertToMicroNode, customizeNode, finalizeNodeState, getNodeState, registerExternalResources
-
Methods inherited from interface com.helger.html.hc.IHCTextNode
appendText, appendText, prependText, prependText, setText, setText
-
-
-
-
Constructor Detail
-
HCTextNode
public HCTextNode(@Nonnull char[] aChars)
-
HCTextNode
public HCTextNode(@Nonnull char[] aChars, @Nonnegative int nOfs, @Nonnegative int nLen)
-
HCTextNode
public HCTextNode(char cChar)
-
HCTextNode
public HCTextNode(int nText)
-
HCTextNode
public HCTextNode(long nText)
-
-
Method Detail
-
createOnDemand
@Nullable public static HCTextNode createOnDemand(@Nullable String sText)
-
createOnDemand
@Nullable public static HCTextNode createOnDemand(@Nullable char[] aText)
-
-