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

/openjdk7/jdk/src/share/classes/java/util/prefs/
H A DPreferences.java950 * <tt>false</tt>. Thus, the idiom <tt>p.nodeExists("")</tt> may be
967 public abstract boolean nodeExists(String pathName) method in class:Preferences
975 * {@link #node(String) nodeExists("")} on the corresponding
986 * subsequent call to <tt>nodeExists</tt> on this node's path name may
H A DAbstractPreferences.java846 * Implements the <tt>nodeExists</tt> method as per the specification in
847 * {@link Preferences#nodeExists(String)}.
865 public boolean nodeExists(String path) method in class:AbstractPreferences
876 return nodeExists(new StringTokenizer(path, "/", true));
880 return root.nodeExists(new StringTokenizer(path.substring(1), "/",
887 private boolean nodeExists(StringTokenizer path) method in class:AbstractPreferences
904 return child.nodeExists(path);

Completed in 46 milliseconds