> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kinetica.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MatchGraphRequest.SolveMethod

> MatchGraphRequest.SolveMethod — Kinetica Java API

<div className="kinetica-javadoc">
  <div className="header">
    <div className="sub-title"><span className="package-label-in-type">Package</span> <a href="/content/api/java/com/gpudb/protocol/package-summary">com.gpudb.protocol</a></div>
    <h1 title="Class MatchGraphRequest.SolveMethod" className="title">Class MatchGraphRequest.SolveMethod</h1>
  </div>

  <div className="inheritance" title="Inheritance Tree">
    <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" className="external-link">java.lang.Object</a>
    <div className="inheritance">com.gpudb.protocol.MatchGraphRequest.SolveMethod</div>
  </div>

  <div className="section class-description" id="class-description">
    <div className="dl notes">
      <div className="dt">Enclosing class:</div>
      <div className="dd"><code><a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest" title="class in com.gpudb.protocol">MatchGraphRequest</a></code></div>
    </div>

    <hr />

    <div className="type-signature"><span className="modifiers">public static final class </span><span className="element-name type-name-label">MatchGraphRequest.SolveMethod</span> <span className="extends-implements">extends <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" className="external-link">Object</a></span></div>

    <div className="block">
      A set of string constants for the <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest" title="class in com.gpudb.protocol"><code>MatchGraphRequest</code></a> parameter <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest#getSolveMethod()"><code>solveMethod</code></a>.
      <p> The type of solver to use for graph matching.</p>
    </div>
  </div>

  <div className="section summary">
    <ul className="summary-list">
      <li>
        <div className="section field-summary" id="field-summary">
          <h2>Field Summary</h2>
          <div className="caption"><span>Fields</span></div>

          <div className="summary-table three-column-summary">
            <div className="table-header col-first">Modifier and Type</div>
            <div className="table-header col-second">Field</div>
            <div className="table-header col-last">Description</div>
            <div className="col-first even-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second even-row-color"><code><a href="#MARKOV_CHAIN" className="member-name-link">MARKOV\_CHAIN</a></code></div>

            <div className="col-last even-row-color">
              <div className="block">Matches <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest#getSamplePoints()"><code>samplePoints</code></a> to the graph using the Hidden Markov Model (HMM)-based method, which conducts a range-tree closest-edge search to find the best combinations of possible road segments (<a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest.Options#NUM_SEGMENTS"><code>NUM\_SEGMENTS</code></a>) for each sample point to create the best route.</div>
            </div>

            <div className="col-first odd-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second odd-row-color"><code><a href="#MATCH_BATCH_SOLVES" className="member-name-link">MATCH\_BATCH\_SOLVES</a></code></div>

            <div className="col-last odd-row-color">
              <div className="block">Matches <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest#getSamplePoints()"><code>samplePoints</code></a> source and destination pairs for the shortest path solves in batch mode.</div>
            </div>

            <div className="col-first even-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second even-row-color"><code><a href="#MATCH_CHARGING_STATIONS" className="member-name-link">MATCH\_CHARGING\_STATIONS</a></code></div>

            <div className="col-last even-row-color">
              <div className="block">Matches an optimal path across a number of ev-charging stations between source and target locations.</div>
            </div>

            <div className="col-first odd-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second odd-row-color"><code><a href="#MATCH_CLUSTERS" className="member-name-link">MATCH\_CLUSTERS</a></code></div>

            <div className="col-last odd-row-color">
              <div className="block">Matches the graph nodes with a cluster index using Louvain clustering algorithm.</div>
            </div>

            <div className="col-first even-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second even-row-color"><code><a href="#MATCH_EMBEDDING" className="member-name-link">MATCH\_EMBEDDING</a></code></div>

            <div className="col-last even-row-color">
              <div className="block">Creates vector node embeddings.</div>
            </div>

            <div className="col-first odd-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second odd-row-color"><code><a href="#MATCH_ISOCHRONE" className="member-name-link">MATCH\_ISOCHRONE</a></code></div>

            <div className="col-last odd-row-color">
              <div className="block">Solves for isochrones for a set of input sources.</div>
            </div>

            <div className="col-first even-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second even-row-color"><code><a href="#MATCH_LOOPS" className="member-name-link">MATCH\_LOOPS</a></code></div>

            <div className="col-last even-row-color">
              <div className="block">Matches closed loops (Eulerian paths) originating and ending at each graph node within min and max hops (levels).</div>
            </div>

            <div className="col-first odd-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second odd-row-color"><code><a href="#MATCH_OD_PAIRS" className="member-name-link">MATCH\_OD\_PAIRS</a></code></div>

            <div className="col-last odd-row-color">
              <div className="block">Matches <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest#getSamplePoints()"><code>samplePoints</code></a> to find the most probable path between origin and destination pairs with cost constraints.</div>
            </div>

            <div className="col-first even-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second even-row-color"><code><a href="#MATCH_PATTERN" className="member-name-link">MATCH\_PATTERN</a></code></div>

            <div className="col-last even-row-color">
              <div className="block">Matches a pattern in the graph.</div>
            </div>

            <div className="col-first odd-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second odd-row-color"><code><a href="#MATCH_PICKUP_DROPOFF" className="member-name-link">MATCH\_PICKUP\_DROPOFF</a></code></div>

            <div className="col-last odd-row-color">
              <div className="block">Matches the pickups and dropoffs by optimizing the total trip costs.</div>
            </div>

            <div className="col-first even-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second even-row-color"><code><a href="#MATCH_ROUTE_DETOUR" className="member-name-link">MATCH\_ROUTE\_DETOUR</a></code></div>

            <div className="col-last even-row-color">
              <div className="block">Computes detour costs for nearby stations at a mark point along each source-target route.</div>
            </div>

            <div className="col-first odd-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second odd-row-color"><code><a href="#MATCH_SIMILARITY" className="member-name-link">MATCH\_SIMILARITY</a></code></div>

            <div className="col-last odd-row-color">
              <div className="block">Matches the intersection set(s) by computing the Jaccard similarity score between node pairs.</div>
            </div>

            <div className="col-first even-row-color"><code>static final <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></code></div>
            <div className="col-second even-row-color"><code><a href="#MATCH_SUPPLY_DEMAND" className="member-name-link">MATCH\_SUPPLY\_DEMAND</a></code></div>

            <div className="col-last even-row-color">
              <div className="block">Matches <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest#getSamplePoints()"><code>samplePoints</code></a> to optimize scheduling multiple supplies (trucks) with varying sizes to varying demand sites with varying capacities per depot.</div>
            </div>
          </div>
        </div>
      </li>

      <li>
        <div className="section method-summary" id="method-summary">
          <h2>Method Summary</h2>

          <div className="inherited-list">
            <h3 id="methods-inherited-from-class-java.lang.Object">Methods inherited from class java.lang.<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html" title="class or interface in java.lang" className="external-link">Object</a></h3>
            <code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#clone()" title="class or interface in java.lang" className="external-link">clone</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#equals(java.lang.Object)" title="class or interface in java.lang" className="external-link">equals</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#finalize()" title="class or interface in java.lang" className="external-link">finalize</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#getClass()" title="class or interface in java.lang" className="external-link">getClass</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#hashCode()" title="class or interface in java.lang" className="external-link">hashCode</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notify()" title="class or interface in java.lang" className="external-link">notify</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#notifyAll()" title="class or interface in java.lang" className="external-link">notifyAll</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#toString()" title="class or interface in java.lang" className="external-link">toString</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait()" title="class or interface in java.lang" className="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long)" title="class or interface in java.lang" className="external-link">wait</a>, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/Object.html#wait(long,int)" title="class or interface in java.lang" className="external-link">wait</a></code>
          </div>
        </div>
      </li>
    </ul>
  </div>

  <div className="section details">
    <ul className="details-list">
      <li>
        <div className="section field-details" id="field-detail">
          <h2>Field Details</h2>

          <ul className="member-list">
            <li>
              <div className="section detail" id="MARKOV_CHAIN">
                <h3>MARKOV\_CHAIN</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MARKOV\_CHAIN</span></div>
                <div className="block">Matches <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest#getSamplePoints()"><code>samplePoints</code></a> to the graph using the Hidden Markov Model (HMM)-based method, which conducts a range-tree closest-edge search to find the best combinations of possible road segments (<a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest.Options#NUM_SEGMENTS"><code>NUM\_SEGMENTS</code></a>) for each sample point to create the best route. The route is secured one point at a time while looking ahead <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest.Options#CHAIN_WIDTH"><code>CHAIN\_WIDTH</code></a> number of points, so the prediction is corrected after each point. This solution type is the most accurate but also the most computationally intensive. Related options: <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest.Options#NUM_SEGMENTS"><code>NUM\_SEGMENTS</code></a> and <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest.Options#CHAIN_WIDTH"><code>CHAIN\_WIDTH</code></a>.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MARKOV_CHAIN">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_OD_PAIRS">
                <h3>MATCH\_OD\_PAIRS</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_OD\_PAIRS</span></div>
                <div className="block">Matches <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest#getSamplePoints()"><code>samplePoints</code></a> to find the most probable path between origin and destination pairs with cost constraints.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_OD_PAIRS">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_SUPPLY_DEMAND">
                <h3>MATCH\_SUPPLY\_DEMAND</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_SUPPLY\_DEMAND</span></div>
                <div className="block">Matches <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest#getSamplePoints()"><code>samplePoints</code></a> to optimize scheduling multiple supplies (trucks) with varying sizes to varying demand sites with varying capacities per depot. Related options: <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest.Options#PARTIAL_LOADING"><code>PARTIAL\_LOADING</code></a> and <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest.Options#MAX_COMBINATIONS"><code>MAX\_COMBINATIONS</code></a>.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_SUPPLY_DEMAND">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_BATCH_SOLVES">
                <h3>MATCH\_BATCH\_SOLVES</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_BATCH\_SOLVES</span></div>
                <div className="block">Matches <a href="/content/api/java/com/gpudb/protocol/MatchGraphRequest#getSamplePoints()"><code>samplePoints</code></a> source and destination pairs for the shortest path solves in batch mode.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_BATCH_SOLVES">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_LOOPS">
                <h3>MATCH\_LOOPS</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_LOOPS</span></div>
                <div className="block">Matches closed loops (Eulerian paths) originating and ending at each graph node within min and max hops (levels).</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_LOOPS">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_CHARGING_STATIONS">
                <h3>MATCH\_CHARGING\_STATIONS</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_CHARGING\_STATIONS</span></div>
                <div className="block">Matches an optimal path across a number of ev-charging stations between source and target locations.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_CHARGING_STATIONS">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_SIMILARITY">
                <h3>MATCH\_SIMILARITY</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_SIMILARITY</span></div>
                <div className="block">Matches the intersection set(s) by computing the Jaccard similarity score between node pairs.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_SIMILARITY">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_PICKUP_DROPOFF">
                <h3>MATCH\_PICKUP\_DROPOFF</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_PICKUP\_DROPOFF</span></div>
                <div className="block">Matches the pickups and dropoffs by optimizing the total trip costs.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_PICKUP_DROPOFF">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_CLUSTERS">
                <h3>MATCH\_CLUSTERS</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_CLUSTERS</span></div>
                <div className="block">Matches the graph nodes with a cluster index using Louvain clustering algorithm.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_CLUSTERS">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_PATTERN">
                <h3>MATCH\_PATTERN</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_PATTERN</span></div>
                <div className="block">Matches a pattern in the graph.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_PATTERN">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_EMBEDDING">
                <h3>MATCH\_EMBEDDING</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_EMBEDDING</span></div>
                <div className="block">Creates vector node embeddings.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_EMBEDDING">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_ISOCHRONE">
                <h3>MATCH\_ISOCHRONE</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_ISOCHRONE</span></div>
                <div className="block">Solves for isochrones for a set of input sources.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_ISOCHRONE">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="MATCH_ROUTE_DETOUR">
                <h3>MATCH\_ROUTE\_DETOUR</h3>
                <div className="member-signature"><span className="modifiers">public static final</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html" title="class or interface in java.lang" className="external-link">String</a></span> <span className="element-name">MATCH\_ROUTE\_DETOUR</span></div>
                <div className="block">Computes detour costs for nearby stations at a mark point along each source-target route.</div>

                <div className="dl notes">
                  <div className="dt">See Also:</div>

                  <div className="dd">
                    <ul className="tag-list">
                      <li><a href="/content/api/java/constant-values#com.gpudb.protocol.MatchGraphRequest.SolveMethod.MATCH_ROUTE_DETOUR">Constant Field Values</a></li>
                    </ul>
                  </div>
                </div>
              </div>
            </li>
          </ul>
        </div>
      </li>
    </ul>
  </div>
</div>
