All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.bmc.apmtraces.model.QueryResultRow Maven / Gradle / Ivy

The newest version!
/**
 * Copyright (c) 2016, 2024, Oracle and/or its affiliates.  All rights reserved.
 * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
 */
package com.oracle.bmc.apmtraces.model;

/**
 * Object that represents a single row of the query result. It contains the queryResultRowData
 * object that contains the actual data represented by the elements of the query result row, and a
 * queryResultRowMetadata object that contains the metadata about the data contained in the query
 * result row. 
* Note: Objects should always be created or deserialized using the {@link Builder}. This model * distinguishes fields that are {@code null} because they are unset from fields that are explicitly * set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a * set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link * #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set * fields into account. The constructor, on the other hand, does not take the explicitly set fields * into account (since the constructor cannot distinguish explicit {@code null} from unset {@code * null}). */ @jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20200630") @com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = QueryResultRow.Builder.class) @com.fasterxml.jackson.annotation.JsonFilter( com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) public final class QueryResultRow extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { @Deprecated @java.beans.ConstructorProperties({"queryResultRowData", "queryResultRowMetadata"}) public QueryResultRow( java.util.Map queryResultRowData, java.util.Map queryResultRowMetadata) { super(); this.queryResultRowData = queryResultRowData; this.queryResultRowMetadata = queryResultRowMetadata; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { /** * A map containing the actual data represented by a single row of the query result. The key * is the column name or attribute specified in the show clause, or an aggregate function in * the show clause. The value is the actual value of that attribute or aggregate function of * the corresponding single row of the query result set. If an alias name is specified for * an attribute or an aggregate function, then the key will be the alias name specified in * the show clause. If an alias name is not specified for the group by aggregate function in * the show clause, then the corresponding key will be the appropriate * aggregate_function_name_column_name (For example: count(traces) will be keyed as * count_traces). The datatype of the value is presented in the queryResultRowTypeSummaries * list in the queryResultMetadata structure, where the i-th queryResultRowTypeSummary * object represents the datatype of the i-th value when this map is iterated in order. */ @com.fasterxml.jackson.annotation.JsonProperty("queryResultRowData") private java.util.Map queryResultRowData; /** * A map containing the actual data represented by a single row of the query result. The key * is the column name or attribute specified in the show clause, or an aggregate function in * the show clause. The value is the actual value of that attribute or aggregate function of * the corresponding single row of the query result set. If an alias name is specified for * an attribute or an aggregate function, then the key will be the alias name specified in * the show clause. If an alias name is not specified for the group by aggregate function in * the show clause, then the corresponding key will be the appropriate * aggregate_function_name_column_name (For example: count(traces) will be keyed as * count_traces). The datatype of the value is presented in the queryResultRowTypeSummaries * list in the queryResultMetadata structure, where the i-th queryResultRowTypeSummary * object represents the datatype of the i-th value when this map is iterated in order. * * @param queryResultRowData the value to set * @return this builder */ public Builder queryResultRowData(java.util.Map queryResultRowData) { this.queryResultRowData = queryResultRowData; this.__explicitlySet__.add("queryResultRowData"); return this; } /** * A map containing metadata or add-on data for the data presented in the queryResultRowData * map. Data required to present drill down information from the queryResultRowData is * presented as key-value pairs. */ @com.fasterxml.jackson.annotation.JsonProperty("queryResultRowMetadata") private java.util.Map queryResultRowMetadata; /** * A map containing metadata or add-on data for the data presented in the queryResultRowData * map. Data required to present drill down information from the queryResultRowData is * presented as key-value pairs. * * @param queryResultRowMetadata the value to set * @return this builder */ public Builder queryResultRowMetadata( java.util.Map queryResultRowMetadata) { this.queryResultRowMetadata = queryResultRowMetadata; this.__explicitlySet__.add("queryResultRowMetadata"); return this; } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); public QueryResultRow build() { QueryResultRow model = new QueryResultRow(this.queryResultRowData, this.queryResultRowMetadata); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } return model; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(QueryResultRow model) { if (model.wasPropertyExplicitlySet("queryResultRowData")) { this.queryResultRowData(model.getQueryResultRowData()); } if (model.wasPropertyExplicitlySet("queryResultRowMetadata")) { this.queryResultRowMetadata(model.getQueryResultRowMetadata()); } return this; } } /** Create a new builder. */ public static Builder builder() { return new Builder(); } public Builder toBuilder() { return new Builder().copy(this); } /** * A map containing the actual data represented by a single row of the query result. The key is * the column name or attribute specified in the show clause, or an aggregate function in the * show clause. The value is the actual value of that attribute or aggregate function of the * corresponding single row of the query result set. If an alias name is specified for an * attribute or an aggregate function, then the key will be the alias name specified in the show * clause. If an alias name is not specified for the group by aggregate function in the show * clause, then the corresponding key will be the appropriate * aggregate_function_name_column_name (For example: count(traces) will be keyed as * count_traces). The datatype of the value is presented in the queryResultRowTypeSummaries list * in the queryResultMetadata structure, where the i-th queryResultRowTypeSummary object * represents the datatype of the i-th value when this map is iterated in order. */ @com.fasterxml.jackson.annotation.JsonProperty("queryResultRowData") private final java.util.Map queryResultRowData; /** * A map containing the actual data represented by a single row of the query result. The key is * the column name or attribute specified in the show clause, or an aggregate function in the * show clause. The value is the actual value of that attribute or aggregate function of the * corresponding single row of the query result set. If an alias name is specified for an * attribute or an aggregate function, then the key will be the alias name specified in the show * clause. If an alias name is not specified for the group by aggregate function in the show * clause, then the corresponding key will be the appropriate * aggregate_function_name_column_name (For example: count(traces) will be keyed as * count_traces). The datatype of the value is presented in the queryResultRowTypeSummaries list * in the queryResultMetadata structure, where the i-th queryResultRowTypeSummary object * represents the datatype of the i-th value when this map is iterated in order. * * @return the value */ public java.util.Map getQueryResultRowData() { return queryResultRowData; } /** * A map containing metadata or add-on data for the data presented in the queryResultRowData * map. Data required to present drill down information from the queryResultRowData is presented * as key-value pairs. */ @com.fasterxml.jackson.annotation.JsonProperty("queryResultRowMetadata") private final java.util.Map queryResultRowMetadata; /** * A map containing metadata or add-on data for the data presented in the queryResultRowData * map. Data required to present drill down information from the queryResultRowData is presented * as key-value pairs. * * @return the value */ public java.util.Map getQueryResultRowMetadata() { return queryResultRowMetadata; } @Override public String toString() { return this.toString(true); } /** * Return a string representation of the object. * * @param includeByteArrayContents true to include the full contents of byte arrays * @return string representation */ public String toString(boolean includeByteArrayContents) { java.lang.StringBuilder sb = new java.lang.StringBuilder(); sb.append("QueryResultRow("); sb.append("super=").append(super.toString()); sb.append("queryResultRowData=").append(String.valueOf(this.queryResultRowData)); sb.append(", queryResultRowMetadata=").append(String.valueOf(this.queryResultRowMetadata)); sb.append(")"); return sb.toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof QueryResultRow)) { return false; } QueryResultRow other = (QueryResultRow) o; return java.util.Objects.equals(this.queryResultRowData, other.queryResultRowData) && java.util.Objects.equals( this.queryResultRowMetadata, other.queryResultRowMetadata) && super.equals(other); } @Override public int hashCode() { final int PRIME = 59; int result = 1; result = (result * PRIME) + (this.queryResultRowData == null ? 43 : this.queryResultRowData.hashCode()); result = (result * PRIME) + (this.queryResultRowMetadata == null ? 43 : this.queryResultRowMetadata.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy