Package ch.nolix.core.document.node
Klasse AbstractNode<N extends AbstractNode<N>>
java.lang.Object
ch.nolix.core.document.node.AbstractNode<N>
- Typparameter:
N
- is the type of aAbstractNode
.
- Alle implementierten Schnittstellen:
IOptionalHeaderHolder
,INode<N>
,BlanknessRequestable
- Bekannte direkte Unterklassen:
AbstractMutableNode
,Node
- Version:
- 2017-06-24
- Autor:
- Silvan Wyss
-
Feldübersicht
Felder -
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungfinal boolean
final boolean
containsChildNodeThat
(Predicate<INode<?>> selector) final boolean
containsChildNodeWithHeader
(String header) final boolean
final boolean
final int
final IContainer
<String> static String
getEscapeStringFor
(String string) getOptionalStoredFirstChildNodeThat
(Predicate<INode<?>> selector) static String
getOriginStringFromEscapeString
(String escapeString) final boolean
final double
final int
final String
final N
getStoredChildNodeAt1BasedIndex
(int index) final IContainer
<N> getStoredChildNodesThat
(Predicate<INode<?>> selector) final IContainer
<N> getStoredChildNodesWithHeader
(String header) final N
final N
getStoredFirstChildNodeThat
(Predicate<INode<?>> selector) final N
final N
final int
hashCode()
final boolean
isBlank()
final void
saveToFile
(String path) Saves the currentAbstractNode
to the file with the given file path.final void
saveToFile
(String path, WriteMode writeMode) Saves the currentAbstractNode
to the file with the given path.final boolean
final double
toDouble()
final String
final int
toInt()
final String
toString()
final IMutableXmlNode
toXml()
Von Klasse geerbte Methoden java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.documentapi.nodeapi.INode
asWithHeader, getStoredChildNodes
Von Schnittstelle geerbte Methoden ch.nolix.coreapi.attributeapi.optionalattributeapi.IOptionalHeaderHolder
getHeader, getHeaderOrEmptyString, getOptionalHeader, hasHeader, hasHeader
-
Felddetails
-
COMMA_CODE
- Siehe auch:
-
DOLLAR_SYMBOL_CODE
- Siehe auch:
-
OPEN_BRACKET_CODE
- Siehe auch:
-
CLOSED_BRACKET_CODE
- Siehe auch:
-
-
Konstruktordetails
-
AbstractNode
public AbstractNode()
-
-
Methodendetails
-
getEscapeStringFor
- Parameter:
string
-- Gibt zurück:
- an escape
String
for the given string.
-
getOriginStringFromEscapeString
- Parameter:
escapeString
-- Gibt zurück:
- the origin
String
from the given escapeString. - Löst aus:
NullPointerException
- if the given escapeString is null.
-
containsChildNodes
public final boolean containsChildNodes()- Angegeben von:
containsChildNodes
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- true if the current
INode
contains childINode
s.
-
containsChildNodeThat
- Angegeben von:
containsChildNodeThat
in SchnittstelleINode<N extends AbstractNode<N>>
- Parameter:
selector
-- Gibt zurück:
- true if the current
INode
contains a childINode
the given selector selects.
-
containsChildNodeWithHeader
- Angegeben von:
containsChildNodeWithHeader
in SchnittstelleINode<N extends AbstractNode<N>>
- Parameter:
header
-- Gibt zurück:
- true if the current
INode
contains a childINode
with the given header.
-
containsOneChildNode
public final boolean containsOneChildNode()- Angegeben von:
containsOneChildNode
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- true if the current
INode
contains 1 childINode
.
-
equals
-
getChildNodeCount
public final int getChildNodeCount()- Angegeben von:
getChildNodeCount
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- the number of child
INode
s of the currentINode
.
-
getChildNodesHeaders
- Angegeben von:
getChildNodesHeaders
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- the headers of the child
INode
s of the currentINode
.
-
getOptionalStoredFirstChildNodeThat
- Angegeben von:
getOptionalStoredFirstChildNodeThat
in SchnittstelleINode<N extends AbstractNode<N>>
- Parameter:
selector
-- Gibt zurück:
- a new
Optional
wit the first childINode
the given selector selects from the currentINode
, an emptyOptional
otherwise.
-
getStoredChildNodeAt1BasedIndex
- Angegeben von:
getStoredChildNodeAt1BasedIndex
in SchnittstelleINode<N extends AbstractNode<N>>
- Parameter:
index
-- Gibt zurück:
- the child
INode
at the given param1BasedIndex from the currentINode
.
-
getStoredChildNodesWithHeader
- Angegeben von:
getStoredChildNodesWithHeader
in SchnittstelleINode<N extends AbstractNode<N>>
- Parameter:
header
-- Gibt zurück:
- the child
INode
s with the given header from the currentINode
.
-
getStoredChildNodesThat
- Angegeben von:
getStoredChildNodesThat
in SchnittstelleINode<N extends AbstractNode<N>>
- Parameter:
selector
-- Gibt zurück:
- the child
INode
s the given selector selects from the currentINode
.
-
getStoredFirstChildNode
- Angegeben von:
getStoredFirstChildNode
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- the first child
INode
from the currentINode
.
-
getStoredSingleChildNode
- Angegeben von:
getStoredSingleChildNode
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- the single child
INode
of the currentINode
.
-
getStoredFirstChildNodeThat
- Angegeben von:
getStoredFirstChildNodeThat
in SchnittstelleINode<N extends AbstractNode<N>>
- Parameter:
selector
-- Gibt zurück:
- the first child
INode
the given selector selects from the currentINode
.
-
getStoredFirstChildNodeWithHeader
- Angegeben von:
getStoredFirstChildNodeWithHeader
in SchnittstelleINode<N extends AbstractNode<N>>
- Parameter:
header
-- Gibt zurück:
- the first child
INode
with the given header from the currentINode
.
-
getSingleChildNodeAsBoolean
public final boolean getSingleChildNodeAsBoolean()- Angegeben von:
getSingleChildNodeAsBoolean
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- the boolean the single child
INode
of the currentINode
represents.
-
getSingleChildNodeAsDouble
public final double getSingleChildNodeAsDouble()- Angegeben von:
getSingleChildNodeAsDouble
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- the double the single child
INode
of the currentINode
represents.
-
getSingleChildNodeAsInt
public final int getSingleChildNodeAsInt()- Angegeben von:
getSingleChildNodeAsInt
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- the int the single child
INode
of the currentINode
represents.
-
getSingleChildNodeHeader
- Angegeben von:
getSingleChildNodeHeader
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- the header of the single child
INode
of the currentINode
.
-
hashCode
public final int hashCode() -
isBlank
public final boolean isBlank()- Angegeben von:
isBlank
in SchnittstelleBlanknessRequestable
- Gibt zurück:
- true if
BlanknessRequestable
is blank.
-
saveToFile
Saves the currentAbstractNode
to the file with the given file path.- Parameter:
path
-- Löst aus:
ArgumentIsNullException
- if the given path is null.InvalidArgumentException
- if the given path is blank.InvalidArgumentException
- if there exists already a file system item with the given path.
-
saveToFile
Saves the currentAbstractNode
to the file with the given path.- Parameter:
path
-writeMode
-- Löst aus:
ArgumentIsNullException
- if the given path is null.InvalidArgumentException
- if the given path is blank.InvalidArgumentException
- if the given writeMode flag=WriteMode.THROW_EXCEPTION_WHEN_TARGET_EXISTS_ALREADY
and there exists already a file system item with the given path.
-
toBoolean
public final boolean toBoolean() -
toDouble
public final double toDouble() -
toFormattedString
- Angegeben von:
toFormattedString
in SchnittstelleINode<N extends AbstractNode<N>>
- Gibt zurück:
- a formatted
String
representation of the currentINode
.
-
toInt
public final int toInt() -
toString
-
toXml
-