📄 basicgraph.html
字号:
public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/List.html" title="class or interface in java.util">List</A> <B>queryEdges</B>(<A HREF="../../../../../org/geotools/graph/structure/GraphVisitor.html" title="interface in org.geotools.graph.structure">GraphVisitor</A> visitor)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></B></DD><DD>Performs a query against the edges of the graph. Each Edge object contained in the graph is passed to a GraphVisitor to determine if it meets the query criteria.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html#queryEdges(org.geotools.graph.structure.GraphVisitor)">queryEdges</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>visitor</CODE> - Determines if the meets the query criteria. <BR> Returns MEET_AND_CONTINUE to signal that the edge meets the query criteria and the query should continue.<BR> Returns MEET_AND_STOP to signal that the edge meest the query criteria and the query should stop.<BR> FAIL_QUERY to signal that the edge does NOT meet the query criteria.<DT><B>Returns:</B><DD>A collection of edges that meet the query criteria.<DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/graph/structure/Graph.html#queryEdges(org.geotools.graph.structure.GraphVisitor)"><CODE>Graph.queryEdges(GraphVisitor)</CODE></A></DL></DD></DL><HR><A NAME="visitNodes(org.geotools.graph.structure.GraphVisitor)"><!-- --></A><H3>visitNodes</H3><PRE>public void <B>visitNodes</B>(<A HREF="../../../../../org/geotools/graph/structure/GraphVisitor.html" title="interface in org.geotools.graph.structure">GraphVisitor</A> visitor)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></B></DD><DD>Applies the visitor pattern to the nodes of the graph.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html#visitNodes(org.geotools.graph.structure.GraphVisitor)">visitNodes</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>visitor</CODE> - <DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/graph/structure/Graph.html#visitNodes(org.geotools.graph.structure.GraphVisitor)"><CODE>Graph.visitNodes(GraphVisitor)</CODE></A></DL></DD></DL><HR><A NAME="visitEdges(org.geotools.graph.structure.GraphVisitor)"><!-- --></A><H3>visitEdges</H3><PRE>public void <B>visitEdges</B>(<A HREF="../../../../../org/geotools/graph/structure/GraphVisitor.html" title="interface in org.geotools.graph.structure">GraphVisitor</A> visitor)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></B></DD><DD>Applies the visitor pattern to the edges of the graph.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html#visitEdges(org.geotools.graph.structure.GraphVisitor)">visitEdges</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>visitor</CODE> - <DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/graph/structure/Graph.html#visitEdges(org.geotools.graph.structure.GraphVisitor)"><CODE>Graph.visitEdges(GraphVisitor)</CODE></A></DL></DD></DL><HR><A NAME="getNodesOfDegree(int)"><!-- --></A><H3>getNodesOfDegree</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/List.html" title="class or interface in java.util">List</A> <B>getNodesOfDegree</B>(int n)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></B></DD><DD>Returns all the nodes in the graph of a specified degree. The degree of a node is the number of edges that are adjacent to the node.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html#getNodesOfDegree(int)">getNodesOfDegree</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>n</CODE> - The desired degree of nodes to be returned.<DT><B>Returns:</B><DD>A collection of nodes of degree n.<DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/graph/structure/Graph.html#getNodesOfDegree(int)"><CODE>Graph.getNodesOfDegree(int)</CODE></A>, <A HREF="../../../../../org/geotools/graph/structure/Node.html#getDegree()"><CODE>Node.getDegree()</CODE></A></DL></DD></DL><HR><A NAME="getVisitedNodes(boolean)"><!-- --></A><H3>getVisitedNodes</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/List.html" title="class or interface in java.util">List</A> <B>getVisitedNodes</B>(boolean visited)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></B></DD><DD>Returns all the nodes in the graph that have been marked as visited or non-visited.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html#getVisitedNodes(boolean)">getVisitedNodes</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>visited</CODE> - True if node is visited, false if node is unvisited.<DT><B>Returns:</B><DD>List of nodes marked as visited / non-visited.<DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/graph/structure/Graph.html#getVisitedNodes(boolean)"><CODE>Graph.getVisitedNodes(boolean)</CODE></A></DL></DD></DL><HR><A NAME="getVisitedEdges(boolean)"><!-- --></A><H3>getVisitedEdges</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/List.html" title="class or interface in java.util">List</A> <B>getVisitedEdges</B>(boolean visited)</PRE><DL><DD><B>Description copied from interface: <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></B></DD><DD>Returns all the edges in the graph that have been marked as visited or non-visited.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html#getVisitedEdges(boolean)">getVisitedEdges</A></CODE> in interface <CODE><A HREF="../../../../../org/geotools/graph/structure/Graph.html" title="interface in org.geotools.graph.structure">Graph</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>visited</CODE> - True if edge is visited, false if edge is unvisited.<DT><B>Returns:</B><DD>List of edges marked as visited / non-visited.<DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/graph/structure/Graph.html#getVisitedEdges(boolean)"><CODE>Graph.getVisitedEdges(boolean)</CODE></A></DL></DD></DL><HR><A NAME="initNodes()"><!-- --></A><H3>initNodes</H3><PRE>public void <B>initNodes</B>()</PRE><DL><DD>Initializes the nodes in the graph by setting all visited flags to false and all visited counts to zero.<P><DD><DL></DL></DD><DD><DL><DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/graph/structure/basic/BasicGraphable.html#isVisited()"><CODE>BasicGraphable.isVisited()</CODE></A>, <A HREF="../../../../../org/geotools/graph/structure/basic/BasicGraphable.html#getCount()"><CODE>BasicGraphable.getCount()</CODE></A></DL></DD></DL><HR><A NAME="initEdges()"><!-- --></A><H3>initEdges</H3><PRE>public void <B>initEdges</B>()</PRE><DL><DD>Initializes the edges in the graph by setting all visited flags to false and all visited counts to zero.<P><DD><DL></DL></DD><DD><DL><DT><B>See Also:</B><DD><A HREF="../../../../../org/geotools/graph/structure/basic/BasicGraphable.html#isVisited()"><CODE>BasicGraphable.isVisited()</CODE></A>, <A HREF="../../../../../org/geotools/graph/structure/basic/BasicGraphable.html#getCount()"><CODE>BasicGraphable.getCount()</CODE></A></DL></DD></DL><HR><A NAME="toString()"><!-- --></A><H3>toString</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>toString</B>()</PRE><DL><DD>Returns the string representation of the graph which is just the string representation of the edge and node collections.<P><DD><DL></DL></DD><DD><DL><DT><B>Returns:</B><DD>String represtentaton of graph.</DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ======= START OF BOTTOM NAVBAR ====== --><A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/BasicGraph.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../org/geotools/graph/structure/basic/BasicEdge.html" title="class in org.geotools.graph.structure.basic"><B>PREV CLASS</B></A> <A HREF="../../../../../org/geotools/graph/structure/basic/BasicGraphable.html" title="class in org.geotools.graph.structure.basic"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A> <A HREF="BasicGraph.html" target="_top"><B>NO FRAMES</B></A> <SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--></SCRIPT><NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR>Copyright © 1996-2007 <a href="http://www.geotools.org">Geotools</a>. All Rights Reserved.</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -