Searched defs:TreeName (Results 1 - 1 of 1) sorted by relevance

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/spi/
H A DTreeName.java36 public final class TreeName implements Comparable<TreeName> class in inherits:Comparable
50 public TreeName(String baseDN, String indexId) method in class:TreeName
58 * Builds a new {@link TreeName} object based on the provided string representation.
61 * @return a new {@link TreeName} object constructed from the provided string
63 public static TreeName valueOf(String treeName)
66 Reject.ifTrue(lastSlash < 2 || treeName.charAt(0) != '/', "TreeName is not of the form /<name>/<name>");
69 return new TreeName(baseDN, indexId);
102 else if (obj instanceof TreeName)
104 return s.equals(((TreeName) ob
[all...]

Completed in 28 milliseconds