public class BenanntPath
extends java.lang.Object
Benannt
in the hierarchy in the
Solstice navigation tree. The path may be absolute (starting from the root of
the tree) or relative (starting from some given parent).Modifier and Type | Field and Description |
---|---|
static org.apache.log4j.Logger |
log |
static java.lang.String |
SEPARATOR |
Constructor and Description |
---|
BenanntPath(Benannt ben) |
BenanntPath(java.lang.String path) |
Modifier and Type | Method and Description |
---|---|
BenanntPath |
append(BenanntPath path)
Appends the given
BenanntPath , which must be relative, to this path. |
void |
checkClazz(java.lang.Class<? extends Benannt> clazz,
Benannt startingPoint) |
boolean |
equals(java.lang.Object other) |
Benannt |
getBenannt(BOLoaderI bol,
Benannt startingPoint)
Finds and returns the
Benannt that can be located via this BenanntPath ,
starting at the passed Benannt (only required if this BenanntPath is relative). |
Benannt |
getBenannt(BOLoaderI bol,
Benannt startingPoint,
java.lang.Class<? extends Benannt> clazz) |
Benannt |
getBenannt(BOLoaderI bol,
java.lang.Class<? extends Benannt> clazz)
Finds and returns the
Benannt that can be located via this (absolute) BenanntPath . |
boolean |
hasChildren() |
boolean |
isAbsolute() |
static BenanntPath[] |
ofMultipathString(java.lang.String multipathString) |
java.lang.String[] |
split()
Splits this BenanntPath around matches of
SEPARATOR . |
java.lang.String |
toString() |
public static final org.apache.log4j.Logger log
public static final java.lang.String SEPARATOR
public BenanntPath(java.lang.String path)
public BenanntPath(Benannt ben)
public static BenanntPath[] ofMultipathString(java.lang.String multipathString)
public boolean isAbsolute()
public boolean hasChildren()
public java.lang.String[] split()
SEPARATOR
.
The array returned by this method contains each path part of this BenanntPath
that is terminated by a SEPARATOR
or is terminated by the end of the path.
The path parts in the array are in the order in which they occur in this BenanntPath.
If this BenanntPath is absolute, the first element in the returned array will be the
empty String, similar to the behaviour you would get if calling
String.split(String)
on the path with the SEPARATOR
as regex
parameter.public BenanntPath append(BenanntPath path)
BenanntPath
, which must be relative, to this path.java.lang.IllegalArgumentException
- if the passed BenanntPath is absolutepublic java.lang.String toString()
toString
in class java.lang.Object
public boolean equals(java.lang.Object other)
equals
in class java.lang.Object
public Benannt getBenannt(BOLoaderI bol, java.lang.Class<? extends Benannt> clazz)
Benannt
that can be located via this (absolute) BenanntPath
.bol
- a BOLoaderI
which is used for loading entries in the navigation tree rootclazz
- the Class
the wanted Benannt
must be of; may be nullBenannt
found on the location designated by this path; null if none could be found for some reasonpublic Benannt getBenannt(BOLoaderI bol, Benannt startingPoint)
Benannt
that can be located via this BenanntPath
,
starting at the passed Benannt
(only required if this BenanntPath
is relative).bol
- a BOLoaderI
which is used for loading entries in the navigation tree rootstartingPoint
- the Benannt
from which to start "walking" the path; ignored if this path is absoluteclazz
- the Class
the wanted Benannt
must be of; may be nullBenannt
found on the location designated by this path; null if none could be found for some reasonpublic Benannt getBenannt(BOLoaderI bol, Benannt startingPoint, java.lang.Class<? extends Benannt> clazz)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.