> ## 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.

# UpdateRecordsRequest

> UpdateRecordsRequest — 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 UpdateRecordsRequest" className="title">Class UpdateRecordsRequest\<T></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.UpdateRecordsRequest\<T></div>
  </div>

  <div className="section class-description" id="class-description">
    <div className="dl notes">
      <div className="dt">Type Parameters:</div>
      <div className="dd"><code>T</code> - The type of object being processed.</div>
    </div>

    <hr />

    <div className="type-signature"><span className="modifiers">public class </span><span className="element-name type-name-label">UpdateRecordsRequest\<T></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 parameters for <a href="/content/api/java/com/gpudb/GPUdb#updateRecords(com.gpudb.protocol.UpdateRecordsRequest)"><code>GPUdb.updateRecords</code></a>.
      <p> Runs multiple predicate-based updates in a single call. With the list of given expressions, any matching record's column values will be updated as provided in <a href="#getNewValuesMaps()"><code>newValuesMaps</code></a>. There is also an optional 'upsert' capability where if a particular predicate doesn't match any existing record, then a new record can be inserted. </p>
      <p> Note that this operation can only be run on an original table and not on a result view. </p>
      <p> This operation can update primary key values. By default only 'pure primary key' predicates are allowed when updating primary key values. If the primary key for a table is the column 'attr1', then the operation will only accept predicates of the form: "attr1 == 'foo'" if the attr1 column is being updated. For a composite primary key (e.g. columns 'attr1' and 'attr2') then this operation will only accept predicates of the form: "(attr1 == 'foo') and (attr2 == 'bar')". Meaning, all primary key columns must appear in an equality predicate in the expressions. Furthermore each 'pure primary key' predicate must be unique within a given request. These restrictions can be removed by utilizing some available options through <a href="#getOptions()"><code>options</code></a>. </p>
      <p> The <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> option specifies the record primary key collision policy for tables with a <a href="/content/concepts/tables/#primary-keys" target="_top">primary key</a>, while <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#IGNORE_EXISTING_PK"><code>IGNORE\_EXISTING\_PK</code></a> specifies the record primary key collision error-suppression policy when those collisions result in the update being rejected. Both are ignored on tables with no primary key.</p>
    </div>
  </div>

  <div className="section summary">
    <ul className="summary-list">
      <li>
        <div className="section nested-class-summary" id="nested-class-summary">
          <h2>Nested Class Summary</h2>
          <div className="caption"><span>Nested Classes</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">Class</div>
            <div className="table-header col-last">Description</div>
            <div className="col-first even-row-color"><code>static final class </code></div>
            <div className="col-second even-row-color"><code><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options" className="type-name-link" title="class in com.gpudb.protocol">UpdateRecordsRequest.Options</a></code></div>

            <div className="col-last even-row-color">
              <div className="block">A set of string constants for the <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol"><code>UpdateRecordsRequest</code></a> parameter <a href="#getOptions()"><code>options</code></a>.</div>
            </div>
          </div>
        </div>
      </li>

      <li>
        <div className="section constructor-summary" id="constructor-summary">
          <h2>Constructor Summary</h2>
          <div className="caption"><span>Constructors</span></div>

          <div className="summary-table two-column-summary">
            <div className="table-header col-first">Constructor</div>
            <div className="table-header col-last">Description</div>
            <div className="col-constructor-name even-row-color"><code><a href="#%3Cinit%3E()" className="member-name-link">UpdateRecordsRequest</a>()</code></div>

            <div className="col-last even-row-color">
              <div className="block">Constructs an UpdateRecordsRequest object with default parameters.</div>
            </div>

            <div className="col-constructor-name odd-row-color"><code><a href="#%3Cinit%3E(java.lang.String,java.util.List,java.util.List,java.util.List,java.util.Map)" className="member-name-link">UpdateRecordsRequest</a><wbr />(<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> tableName, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<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>> expressions, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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>>> newValuesMaps, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>> data, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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>> options)</code></div>

            <div className="col-last odd-row-color">
              <div className="block">Constructs an UpdateRecordsRequest object with the specified parameters.</div>
            </div>
          </div>
        </div>
      </li>

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

          <div id="method-summary-table">
            <div className="table-tabs" role="tablist" aria-orientation="horizontal"><button id="method-summary-table-tab0" role="tab" aria-selected="true" aria-controls="method-summary-table.tabpanel" tabIndex="0" className="active-table-tab">All Methods</button><button id="method-summary-table-tab2" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabIndex="-1" className="table-tab">Instance Methods</button><button id="method-summary-table-tab4" role="tab" aria-selected="false" aria-controls="method-summary-table.tabpanel" tabIndex="-1" className="table-tab">Concrete Methods</button></div>

            <div id="method-summary-table.tabpanel" role="tabpanel" aria-labelledby="method-summary-table-tab0">
              <div className="summary-table three-column-summary">
                <div className="table-header col-first">Modifier and Type</div>
                <div className="table-header col-second">Method</div>
                <div className="table-header col-last">Description</div>
                <div className="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>boolean</code></div>
                <div className="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#equals(java.lang.Object)" className="member-name-link">equals</a><wbr />(<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> obj)</code></div>
                <div className="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"> </div>
                <div className="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a><wbr />\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></code></div>
                <div className="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getData()" className="member-name-link">getData</a>()</code></div>

                <div className="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">An \*optional\* list of new binary-avro encoded records to insert, one for each update.</div>
                </div>

                <div className="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a><wbr />\<<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 method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getExpressions()" className="member-name-link">getExpressions</a>()</code></div>

                <div className="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">A list of the actual predicates, one for each update; format should follow the guidelines <a href="/content/api/java/com/gpudb/GPUdb#filter(com.gpudb.protocol.FilterRequest)"><code>here</code></a>.</div>
                </div>

                <div className="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a><wbr />\<<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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 method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getNewValuesMaps()" className="member-name-link">getNewValuesMaps</a>()</code></div>

                <div className="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">List of new values for the matching records.</div>
                </div>

                <div className="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a><wbr />\<<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>,<wbr /><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 method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getOptions()" className="member-name-link">getOptions</a>()</code></div>

                <div className="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">Optional parameters.</div>
                </div>

                <div className="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><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 method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#getTableName()" className="member-name-link">getTableName</a>()</code></div>

                <div className="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">Name of table to be updated, in \[schema\_name.]table\_name format, using standard <a href="/content/concepts/tables/#table-name-resolution" target="_top">name resolution rules</a>.</div>
                </div>

                <div className="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code>int</code></div>
                <div className="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#hashCode()" className="member-name-link">hashCode</a>()</code></div>
                <div className="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"> </div>
                <div className="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a><wbr />\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></code></div>
                <div className="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setData(java.util.List)" className="member-name-link">setData</a><wbr />(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>> data)</code></div>

                <div className="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">An \*optional\* list of new binary-avro encoded records to insert, one for each update.</div>
                </div>

                <div className="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a><wbr />\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></code></div>
                <div className="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setExpressions(java.util.List)" className="member-name-link">setExpressions</a><wbr />(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<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>> expressions)</code></div>

                <div className="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">A list of the actual predicates, one for each update; format should follow the guidelines <a href="/content/api/java/com/gpudb/GPUdb#filter(com.gpudb.protocol.FilterRequest)"><code>here</code></a>.</div>
                </div>

                <div className="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a><wbr />\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></code></div>
                <div className="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setNewValuesMaps(java.util.List)" className="member-name-link">setNewValuesMaps</a><wbr />(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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>>> newValuesMaps)</code></div>

                <div className="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">List of new values for the matching records.</div>
                </div>

                <div className="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a><wbr />\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></code></div>
                <div className="col-second even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setOptions(java.util.Map)" className="member-name-link">setOptions</a><wbr />(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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>> options)</code></div>

                <div className="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">Optional parameters.</div>
                </div>

                <div className="col-first odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a><wbr />\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></code></div>
                <div className="col-second odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#setTableName(java.lang.String)" className="member-name-link">setTableName</a><wbr />(<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> tableName)</code></div>

                <div className="col-last odd-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4">
                  <div className="block">Name of table to be updated, in \[schema\_name.]table\_name format, using standard <a href="/content/concepts/tables/#table-name-resolution" target="_top">name resolution rules</a>.</div>
                </div>

                <div className="col-first even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><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 method-summary-table method-summary-table-tab2 method-summary-table-tab4"><code><a href="#toString()" className="member-name-link">toString</a>()</code></div>
                <div className="col-last even-row-color method-summary-table method-summary-table-tab2 method-summary-table-tab4"> </div>
              </div>
            </div>
          </div>

          <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#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#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#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 constructor-details" id="constructor-detail">
          <h2>Constructor Details</h2>

          <ul className="member-list">
            <li>
              <div className="section detail" id="<init>()">
                <h3>UpdateRecordsRequest</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="element-name">UpdateRecordsRequest</span>()</div>
                <div className="block">Constructs an UpdateRecordsRequest object with default parameters.</div>
              </div>
            </li>

            <li>
              <div className="section detail" id="<init>(java.lang.String,java.util.List,java.util.List,java.util.List,java.util.Map)">
                <h3>UpdateRecordsRequest</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="element-name">UpdateRecordsRequest</span><wbr /><span className="parameters">(<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> tableName, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<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>> expressions, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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>>> newValuesMaps, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>> data, <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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>> options)</span></div>
                <div className="block">Constructs an UpdateRecordsRequest object with the specified parameters.</div>

                <div className="dl notes">
                  <div className="dt">Parameters:</div>
                  <div className="dd"><code>tableName</code> - Name of table to be updated, in \[schema\_name.]table\_name format, using standard <a href="/content/concepts/tables/#table-name-resolution" target="_top">name resolution rules</a>. Must be a currently existing table and not a view.</div>
                  <div className="dd"><code>expressions</code> - A list of the actual predicates, one for each update; format should follow the guidelines <a href="/content/api/java/com/gpudb/GPUdb#filter(com.gpudb.protocol.FilterRequest)"><code>here</code></a>.</div>
                  <div className="dd"><code>newValuesMaps</code> - List of new values for the matching records. Each element is a map with (key, value) pairs where the keys are the names of the columns whose values are to be updated; the values are the new values. The number of elements in the list should match the length of <code>expressions</code>.</div>
                  <div className="dd"><code>data</code> - An \*optional\* list of new binary-avro encoded records to insert, one for each update. If one of <code>expressions</code> does not yield a matching record to be updated, then the corresponding element from this list will be added to the table. The default value is an empty <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link"><code>List</code></a>.</div>

                  <div className="dd">
                    <code>options</code> - Optional parameters.

                    <ul>
                      <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#GLOBAL_EXPRESSION"><code>GLOBAL\_EXPRESSION</code></a>: An optional global expression to reduce the search space of the predicates listed in <code>expressions</code>. The default value is ''. </li>

                      <li>
                        <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#BYPASS_SAFETY_CHECKS"><code>BYPASS\_SAFETY\_CHECKS</code></a>: When set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, all predicates are available for primary key updates. Keep in mind that it is possible to destroy data in this case, since a single predicate may match multiple objects (potentially all of records of a table), and then updating all of those records to have the same primary key will, due to the primary key uniqueness constraints, effectively delete all but one of those updated records. Supported values:

                        <ul>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                        </ul>

                        The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                      </li>

                      <li>
                        <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a>: Specifies the record collision policy for updating a table with a <a href="/content/concepts/tables/#primary-keys" target="_top">primary key</a>. There are two ways that a record collision can occur. The first is an "update collision", which happens when the update changes the value of the updated record's primary key, and that new primary key already exists as the primary key of another record in the table. The second is an "insert collision", which occurs when a given filter in <code>expressions</code> finds no records to update, and the alternate insert record given in <code> data</code> (or <code>recordsToInsertStr</code>) contains a primary key matching that of an existing record in the table. If <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> is set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, "update collisions" will result in the existing record collided into being removed and the record updated with values specified in <code>newValuesMaps</code> taking its place; "insert collisions" will result in the collided-into record being updated with the values in <code>data</code> / <code> recordsToInsertStr</code> (if given). If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, the existing collided-into record will remain unchanged, while the update will be rejected and the error handled as determined by <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#IGNORE_EXISTING_PK"><code>IGNORE\_EXISTING\_PK</code></a>. If the specified table does not have a primary key, then this option has no effect. Supported values:

                        <ul>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>: Overwrite the collided-into record when updating a record's primary key or inserting an alternate record causes a primary key collision between the record being updated/inserted and another existing record in the table </li>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>: Reject updates which cause primary key collisions between the record being updated/inserted and an existing record in the table </li>
                        </ul>

                        The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                      </li>

                      <li>
                        <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#IGNORE_EXISTING_PK"><code>IGNORE\_EXISTING\_PK</code></a>: Specifies the record collision error-suppression policy for updating a table with a <a href="/content/concepts/tables/#primary-keys" target="_top">primary key</a>, only used when primary key record collisions are rejected (<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>). If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, any record update that is rejected for resulting in a primary key collision with an existing table record will be ignored with no error generated. If <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, the rejection of any update for resulting in a primary key collision will cause an error to be reported. If the specified table does not have a primary key or if <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, then this option has no effect. Supported values:

                        <ul>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>: Ignore updates that result in primary key collisions with existing records. </li>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>: Treat as errors any updates that result in primary key collisions with existing records. </li>
                        </ul>

                        The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                      </li>

                      <li>
                        <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_PARTITION"><code>UPDATE\_PARTITION</code></a>: Force qualifying records to be deleted and reinserted so their partition membership will be reevaluated. Supported values:

                        <ul>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                        </ul>

                        The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                      </li>

                      <li>
                        <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#ENABLE_INPLACE_UPDATES"><code>ENABLE\_INPLACE\_UPDATES</code></a>: If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, qualifying records are modified in place. If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, they are updated by deleting the existing record and inserting a replacement (delete and insert), which prevents the change from being reflected in dependent materialized views until they are refreshed. Supported values:

                        <ul>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                        </ul>

                        The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>.
                      </li>

                      <li>
                        <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUNCATE_STRINGS"><code>TRUNCATE\_STRINGS</code></a>: If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, any strings which are too long for their charN string fields will be truncated to fit. Supported values:

                        <ul>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                        </ul>

                        The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                      </li>

                      <li>
                        <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#USE_EXPRESSIONS_IN_NEW_VALUES_MAPS"><code>USE\_EXPRESSIONS\_IN\_NEW\_VALUES\_MAPS</code></a>: When set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, all new values in <code>newValuesMaps</code> are considered as expression values. When set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, all new values in <code> newValuesMaps</code> are considered as constants. NOTE: When <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, string constants will need to be quoted to avoid being evaluated as expressions. Supported values:

                        <ul>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                          <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                        </ul>

                        The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                      </li>

                      <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#RECORD_ID"><code>RECORD\_ID</code></a>: ID of a single record to be updated (returned in the call to <a href="/content/api/java/com/gpudb/GPUdb#insertRecords(com.gpudb.protocol.InsertRecordsRequest)"><code>GPUdb.insertRecords</code></a> or <a href="/content/api/java/com/gpudb/GPUdb#getRecordsFromCollection(com.gpudb.protocol.GetRecordsFromCollectionRequest)"><code>GPUdb.getRecordsFromCollection</code></a>). </li>
                    </ul>

                    The default value is an empty <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link"><code>Map</code></a>.
                  </div>
                </div>
              </div>
            </li>
          </ul>
        </div>
      </li>

      <li>
        <div className="section method-details" id="method-detail">
          <h2>Method Details</h2>

          <ul className="member-list">
            <li>
              <div className="section detail" id="getTableName()">
                <h3>getTableName</h3>
                <div className="member-signature"><span className="modifiers">public</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">getTableName</span>()</div>
                <div className="block">Name of table to be updated, in \[schema\_name.]table\_name format, using standard <a href="/content/concepts/tables/#table-name-resolution" target="_top">name resolution rules</a>. Must be a currently existing table and not a view.</div>

                <div className="dl notes">
                  <div className="dt">Returns:</div>
                  <div className="dd">The current value of <code>tableName</code>.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="setTableName(java.lang.String)">
                <h3>setTableName</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></span> <span className="element-name">setTableName</span><wbr /><span className="parameters">(<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> tableName)</span></div>
                <div className="block">Name of table to be updated, in \[schema\_name.]table\_name format, using standard <a href="/content/concepts/tables/#table-name-resolution" target="_top">name resolution rules</a>. Must be a currently existing table and not a view.</div>

                <div className="dl notes">
                  <div className="dt">Parameters:</div>
                  <div className="dd"><code>tableName</code> - The new value for <code>tableName</code>.</div>
                  <div className="dt">Returns:</div>
                  <div className="dd"><code>this</code> to mimic the builder pattern.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="getExpressions()">
                <h3>getExpressions</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<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">getExpressions</span>()</div>
                <div className="block">A list of the actual predicates, one for each update; format should follow the guidelines <a href="/content/api/java/com/gpudb/GPUdb#filter(com.gpudb.protocol.FilterRequest)"><code>here</code></a>.</div>

                <div className="dl notes">
                  <div className="dt">Returns:</div>
                  <div className="dd">The current value of <code>expressions</code>.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="setExpressions(java.util.List)">
                <h3>setExpressions</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></span> <span className="element-name">setExpressions</span><wbr /><span className="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<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>> expressions)</span></div>
                <div className="block">A list of the actual predicates, one for each update; format should follow the guidelines <a href="/content/api/java/com/gpudb/GPUdb#filter(com.gpudb.protocol.FilterRequest)"><code>here</code></a>.</div>

                <div className="dl notes">
                  <div className="dt">Parameters:</div>
                  <div className="dd"><code>expressions</code> - The new value for <code>expressions</code>.</div>
                  <div className="dt">Returns:</div>
                  <div className="dd"><code>this</code> to mimic the builder pattern.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="getNewValuesMaps()">
                <h3>getNewValuesMaps</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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">getNewValuesMaps</span>()</div>
                <div className="block">List of new values for the matching records. Each element is a map with (key, value) pairs where the keys are the names of the columns whose values are to be updated; the values are the new values. The number of elements in the list should match the length of <a href="#getExpressions()"><code>expressions</code></a>.</div>

                <div className="dl notes">
                  <div className="dt">Returns:</div>
                  <div className="dd">The current value of <code>newValuesMaps</code>.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="setNewValuesMaps(java.util.List)">
                <h3>setNewValuesMaps</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></span> <span className="element-name">setNewValuesMaps</span><wbr /><span className="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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>>> newValuesMaps)</span></div>
                <div className="block">List of new values for the matching records. Each element is a map with (key, value) pairs where the keys are the names of the columns whose values are to be updated; the values are the new values. The number of elements in the list should match the length of <a href="#getExpressions()"><code>expressions</code></a>.</div>

                <div className="dl notes">
                  <div className="dt">Parameters:</div>
                  <div className="dd"><code>newValuesMaps</code> - The new value for <code>newValuesMaps</code>.</div>
                  <div className="dt">Returns:</div>
                  <div className="dd"><code>this</code> to mimic the builder pattern.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="getData()">
                <h3>getData</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></span> <span className="element-name">getData</span>()</div>
                <div className="block">An \*optional\* list of new binary-avro encoded records to insert, one for each update. If one of <a href="#getExpressions()"><code>expressions</code></a> does not yield a matching record to be updated, then the corresponding element from this list will be added to the table. The default value is an empty <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link"><code>List</code></a>.</div>

                <div className="dl notes">
                  <div className="dt">Returns:</div>
                  <div className="dd">The current value of <code>data</code>.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="setData(java.util.List)">
                <h3>setData</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></span> <span className="element-name">setData</span><wbr /><span className="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link">List</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>> data)</span></div>
                <div className="block">An \*optional\* list of new binary-avro encoded records to insert, one for each update. If one of <a href="#getExpressions()"><code>expressions</code></a> does not yield a matching record to be updated, then the corresponding element from this list will be added to the table. The default value is an empty <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/List.html" title="class or interface in java.util" className="external-link"><code>List</code></a>.</div>

                <div className="dl notes">
                  <div className="dt">Parameters:</div>
                  <div className="dd"><code>data</code> - The new value for <code>data</code>.</div>
                  <div className="dt">Returns:</div>
                  <div className="dd"><code>this</code> to mimic the builder pattern.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="getOptions()">
                <h3>getOptions</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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">getOptions</span>()</div>

                <div className="block">
                  Optional parameters.

                  <ul>
                    <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#GLOBAL_EXPRESSION"><code>GLOBAL\_EXPRESSION</code></a>: An optional global expression to reduce the search space of the predicates listed in <a href="#getExpressions()"><code>expressions</code></a>. The default value is ''. </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#BYPASS_SAFETY_CHECKS"><code>BYPASS\_SAFETY\_CHECKS</code></a>: When set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, all predicates are available for primary key updates. Keep in mind that it is possible to destroy data in this case, since a single predicate may match multiple objects (potentially all of records of a table), and then updating all of those records to have the same primary key will, due to the primary key uniqueness constraints, effectively delete all but one of those updated records. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a>: Specifies the record collision policy for updating a table with a <a href="/content/concepts/tables/#primary-keys" target="_top">primary key</a>. There are two ways that a record collision can occur. The first is an "update collision", which happens when the update changes the value of the updated record's primary key, and that new primary key already exists as the primary key of another record in the table. The second is an "insert collision", which occurs when a given filter in <a href="#getExpressions()"><code>expressions</code></a> finds no records to update, and the alternate insert record given in <a href="#getData()"><code>data</code></a> (or <code>recordsToInsertStr</code>) contains a primary key matching that of an existing record in the table. If <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> is set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, "update collisions" will result in the existing record collided into being removed and the record updated with values specified in <a href="#getNewValuesMaps()"><code>newValuesMaps</code></a> taking its place; "insert collisions" will result in the collided-into record being updated with the values in <a href="#getData()"><code>data</code></a> / <code> recordsToInsertStr</code> (if given). If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, the existing collided-into record will remain unchanged, while the update will be rejected and the error handled as determined by <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#IGNORE_EXISTING_PK"><code>IGNORE\_EXISTING\_PK</code></a>. If the specified table does not have a primary key, then this option has no effect. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>: Overwrite the collided-into record when updating a record's primary key or inserting an alternate record causes a primary key collision between the record being updated/inserted and another existing record in the table </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>: Reject updates which cause primary key collisions between the record being updated/inserted and an existing record in the table </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#IGNORE_EXISTING_PK"><code>IGNORE\_EXISTING\_PK</code></a>: Specifies the record collision error-suppression policy for updating a table with a <a href="/content/concepts/tables/#primary-keys" target="_top">primary key</a>, only used when primary key record collisions are rejected (<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>). If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, any record update that is rejected for resulting in a primary key collision with an existing table record will be ignored with no error generated. If <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, the rejection of any update for resulting in a primary key collision will cause an error to be reported. If the specified table does not have a primary key or if <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, then this option has no effect. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>: Ignore updates that result in primary key collisions with existing records. </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>: Treat as errors any updates that result in primary key collisions with existing records. </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_PARTITION"><code>UPDATE\_PARTITION</code></a>: Force qualifying records to be deleted and reinserted so their partition membership will be reevaluated. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#ENABLE_INPLACE_UPDATES"><code>ENABLE\_INPLACE\_UPDATES</code></a>: If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, qualifying records are modified in place. If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, they are updated by deleting the existing record and inserting a replacement (delete and insert), which prevents the change from being reflected in dependent materialized views until they are refreshed. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUNCATE_STRINGS"><code>TRUNCATE\_STRINGS</code></a>: If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, any strings which are too long for their charN string fields will be truncated to fit. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#USE_EXPRESSIONS_IN_NEW_VALUES_MAPS"><code>USE\_EXPRESSIONS\_IN\_NEW\_VALUES\_MAPS</code></a>: When set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, all new values in <a href="#getNewValuesMaps()"><code>newValuesMaps</code></a> are considered as expression values. When set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, all new values in <a href="#getNewValuesMaps()"><code>newValuesMaps</code></a> are considered as constants. NOTE: When <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, string constants will need to be quoted to avoid being evaluated as expressions. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#RECORD_ID"><code>RECORD\_ID</code></a>: ID of a single record to be updated (returned in the call to <a href="/content/api/java/com/gpudb/GPUdb#insertRecords(com.gpudb.protocol.InsertRecordsRequest)"><code>GPUdb.insertRecords</code></a> or <a href="/content/api/java/com/gpudb/GPUdb#getRecordsFromCollection(com.gpudb.protocol.GetRecordsFromCollectionRequest)"><code>GPUdb.getRecordsFromCollection</code></a>). </li>
                  </ul>

                  The default value is an empty <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link"><code>Map</code></a>.
                </div>

                <div className="dl notes">
                  <div className="dt">Returns:</div>
                  <div className="dd">The current value of <code>options</code>.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="setOptions(java.util.Map)">
                <h3>setOptions</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type"><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="class in com.gpudb.protocol">UpdateRecordsRequest</a>\<<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest" title="type parameter in UpdateRecordsRequest">T</a>></span> <span className="element-name">setOptions</span><wbr /><span className="parameters">(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link">Map</a>\<<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>,<wbr /><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>> options)</span></div>

                <div className="block">
                  Optional parameters.

                  <ul>
                    <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#GLOBAL_EXPRESSION"><code>GLOBAL\_EXPRESSION</code></a>: An optional global expression to reduce the search space of the predicates listed in <a href="#getExpressions()"><code>expressions</code></a>. The default value is ''. </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#BYPASS_SAFETY_CHECKS"><code>BYPASS\_SAFETY\_CHECKS</code></a>: When set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, all predicates are available for primary key updates. Keep in mind that it is possible to destroy data in this case, since a single predicate may match multiple objects (potentially all of records of a table), and then updating all of those records to have the same primary key will, due to the primary key uniqueness constraints, effectively delete all but one of those updated records. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a>: Specifies the record collision policy for updating a table with a <a href="/content/concepts/tables/#primary-keys" target="_top">primary key</a>. There are two ways that a record collision can occur. The first is an "update collision", which happens when the update changes the value of the updated record's primary key, and that new primary key already exists as the primary key of another record in the table. The second is an "insert collision", which occurs when a given filter in <a href="#getExpressions()"><code>expressions</code></a> finds no records to update, and the alternate insert record given in <a href="#getData()"><code>data</code></a> (or <code>recordsToInsertStr</code>) contains a primary key matching that of an existing record in the table. If <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> is set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, "update collisions" will result in the existing record collided into being removed and the record updated with values specified in <a href="#getNewValuesMaps()"><code>newValuesMaps</code></a> taking its place; "insert collisions" will result in the collided-into record being updated with the values in <a href="#getData()"><code>data</code></a> / <code> recordsToInsertStr</code> (if given). If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, the existing collided-into record will remain unchanged, while the update will be rejected and the error handled as determined by <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#IGNORE_EXISTING_PK"><code>IGNORE\_EXISTING\_PK</code></a>. If the specified table does not have a primary key, then this option has no effect. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>: Overwrite the collided-into record when updating a record's primary key or inserting an alternate record causes a primary key collision between the record being updated/inserted and another existing record in the table </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>: Reject updates which cause primary key collisions between the record being updated/inserted and an existing record in the table </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#IGNORE_EXISTING_PK"><code>IGNORE\_EXISTING\_PK</code></a>: Specifies the record collision error-suppression policy for updating a table with a <a href="/content/concepts/tables/#primary-keys" target="_top">primary key</a>, only used when primary key record collisions are rejected (<a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>). If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, any record update that is rejected for resulting in a primary key collision with an existing table record will be ignored with no error generated. If <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, the rejection of any update for resulting in a primary key collision will cause an error to be reported. If the specified table does not have a primary key or if <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_ON_EXISTING_PK"><code>UPDATE\_ON\_EXISTING\_PK</code></a> is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, then this option has no effect. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>: Ignore updates that result in primary key collisions with existing records. </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>: Treat as errors any updates that result in primary key collisions with existing records. </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#UPDATE_PARTITION"><code>UPDATE\_PARTITION</code></a>: Force qualifying records to be deleted and reinserted so their partition membership will be reevaluated. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#ENABLE_INPLACE_UPDATES"><code>ENABLE\_INPLACE\_UPDATES</code></a>: If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, qualifying records are modified in place. If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, they are updated by deleting the existing record and inserting a replacement (delete and insert), which prevents the change from being reflected in dependent materialized views until they are refreshed. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUNCATE_STRINGS"><code>TRUNCATE\_STRINGS</code></a>: If set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, any strings which are too long for their charN string fields will be truncated to fit. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li>
                      <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#USE_EXPRESSIONS_IN_NEW_VALUES_MAPS"><code>USE\_EXPRESSIONS\_IN\_NEW\_VALUES\_MAPS</code></a>: When set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, all new values in <a href="#getNewValuesMaps()"><code>newValuesMaps</code></a> are considered as expression values. When set to <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>, all new values in <a href="#getNewValuesMaps()"><code>newValuesMaps</code></a> are considered as constants. NOTE: When <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a>, string constants will need to be quoted to avoid being evaluated as expressions. Supported values:

                      <ul>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#TRUE"><code>TRUE</code></a> </li>
                        <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a> </li>
                      </ul>

                      The default value is <a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#FALSE"><code>FALSE</code></a>.
                    </li>

                    <li><a href="/content/api/java/com/gpudb/protocol/UpdateRecordsRequest.Options#RECORD_ID"><code>RECORD\_ID</code></a>: ID of a single record to be updated (returned in the call to <a href="/content/api/java/com/gpudb/GPUdb#insertRecords(com.gpudb.protocol.InsertRecordsRequest)"><code>GPUdb.insertRecords</code></a> or <a href="/content/api/java/com/gpudb/GPUdb#getRecordsFromCollection(com.gpudb.protocol.GetRecordsFromCollectionRequest)"><code>GPUdb.getRecordsFromCollection</code></a>). </li>
                  </ul>

                  The default value is an empty <a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Map.html" title="class or interface in java.util" className="external-link"><code>Map</code></a>.
                </div>

                <div className="dl notes">
                  <div className="dt">Parameters:</div>
                  <div className="dd"><code>options</code> - The new value for <code>options</code>.</div>
                  <div className="dt">Returns:</div>
                  <div className="dd"><code>this</code> to mimic the builder pattern.</div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="equals(java.lang.Object)">
                <h3>equals</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type">boolean</span> <span className="element-name">equals</span><wbr /><span className="parameters">(<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> obj)</span></div>

                <div className="dl notes">
                  <div className="dt">Overrides:</div>
                  <div className="dd"><code><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></code> in class <code><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></code></div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="toString()">
                <h3>toString</h3>
                <div className="member-signature"><span className="modifiers">public</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">toString</span>()</div>

                <div className="dl notes">
                  <div className="dt">Overrides:</div>
                  <div className="dd"><code><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></code> in class <code><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></code></div>
                </div>
              </div>
            </li>

            <li>
              <div className="section detail" id="hashCode()">
                <h3>hashCode</h3>
                <div className="member-signature"><span className="modifiers">public</span> <span className="return-type">int</span> <span className="element-name">hashCode</span>()</div>

                <div className="dl notes">
                  <div className="dt">Overrides:</div>
                  <div className="dd"><code><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></code> in class <code><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></code></div>
                </div>
              </div>
            </li>
          </ul>
        </div>
      </li>
    </ul>
  </div>
</div>
