![JAR search and dependency download from the Maven repository](/logo.png)
com.oracle.bmc.loganalytics.model.ChartColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oci-java-sdk-shaded-full Show documentation
Show all versions of oci-java-sdk-shaded-full Show documentation
This project contains the SDK distribution used for Oracle Cloud Infrastructure, and all the dependencies that can be shaded. It also has Maven dependencies that cannot be shaded. Therefore, use this module to depend on the shaded distribution via Maven -- it will shade everything that can be shaded, and automatically pull in the other dependencies.
/**
* 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.loganalytics.model;
/**
* Column returned by querylanguage link command.
* 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: 20200601")
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = ChartColumn.Builder.class)
@com.fasterxml.jackson.annotation.JsonTypeInfo(
use = com.fasterxml.jackson.annotation.JsonTypeInfo.Id.NAME,
include = com.fasterxml.jackson.annotation.JsonTypeInfo.As.PROPERTY,
property = "type")
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class ChartColumn extends AbstractColumn {
@com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "")
public static class Builder {
@com.fasterxml.jackson.annotation.JsonProperty("displayName")
private String displayName;
public Builder displayName(String displayName) {
this.displayName = displayName;
this.__explicitlySet__.add("displayName");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("subSystem")
private SubSystemName subSystem;
public Builder subSystem(SubSystemName subSystem) {
this.subSystem = subSystem;
this.__explicitlySet__.add("subSystem");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("values")
private java.util.List values;
public Builder values(java.util.List values) {
this.values = values;
this.__explicitlySet__.add("values");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("isListOfValues")
private Boolean isListOfValues;
public Builder isListOfValues(Boolean isListOfValues) {
this.isListOfValues = isListOfValues;
this.__explicitlySet__.add("isListOfValues");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("isMultiValued")
private Boolean isMultiValued;
public Builder isMultiValued(Boolean isMultiValued) {
this.isMultiValued = isMultiValued;
this.__explicitlySet__.add("isMultiValued");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("isCaseSensitive")
private Boolean isCaseSensitive;
public Builder isCaseSensitive(Boolean isCaseSensitive) {
this.isCaseSensitive = isCaseSensitive;
this.__explicitlySet__.add("isCaseSensitive");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("isGroupable")
private Boolean isGroupable;
public Builder isGroupable(Boolean isGroupable) {
this.isGroupable = isGroupable;
this.__explicitlySet__.add("isGroupable");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("isEvaluable")
private Boolean isEvaluable;
public Builder isEvaluable(Boolean isEvaluable) {
this.isEvaluable = isEvaluable;
this.__explicitlySet__.add("isEvaluable");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("isHidden")
private Boolean isHidden;
public Builder isHidden(Boolean isHidden) {
this.isHidden = isHidden;
this.__explicitlySet__.add("isHidden");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("valueType")
private ValueType valueType;
public Builder valueType(ValueType valueType) {
this.valueType = valueType;
this.__explicitlySet__.add("valueType");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("originalDisplayName")
private String originalDisplayName;
public Builder originalDisplayName(String originalDisplayName) {
this.originalDisplayName = originalDisplayName;
this.__explicitlySet__.add("originalDisplayName");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("internalName")
private String internalName;
public Builder internalName(String internalName) {
this.internalName = internalName;
this.__explicitlySet__.add("internalName");
return this;
}
/** Time span between each timestamp in the timeseries datapoints. */
@com.fasterxml.jackson.annotation.JsonProperty("intervalGap")
private String intervalGap;
/**
* Time span between each timestamp in the timeseries datapoints.
*
* @param intervalGap the value to set
* @return this builder
*/
public Builder intervalGap(String intervalGap) {
this.intervalGap = intervalGap;
this.__explicitlySet__.add("intervalGap");
return this;
}
/** List of timestamps making up the timeseries datapoints. */
@com.fasterxml.jackson.annotation.JsonProperty("intervals")
private java.util.List intervals;
/**
* List of timestamps making up the timeseries datapoints.
*
* @param intervals the value to set
* @return this builder
*/
public Builder intervals(java.util.List intervals) {
this.intervals = intervals;
this.__explicitlySet__.add("intervals");
return this;
}
/** Total matching count for each timeseries datapoint. */
@com.fasterxml.jackson.annotation.JsonProperty("totalIntervalCounts")
private java.util.List totalIntervalCounts;
/**
* Total matching count for each timeseries datapoint.
*
* @param totalIntervalCounts the value to set
* @return this builder
*/
public Builder totalIntervalCounts(java.util.List totalIntervalCounts) {
this.totalIntervalCounts = totalIntervalCounts;
this.__explicitlySet__.add("totalIntervalCounts");
return this;
}
/** List of series data sets representing various link command results. */
@com.fasterxml.jackson.annotation.JsonProperty("series")
private java.util.List series;
/**
* List of series data sets representing various link command results.
*
* @param series the value to set
* @return this builder
*/
public Builder series(java.util.List series) {
this.series = series;
this.__explicitlySet__.add("series");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public ChartColumn build() {
ChartColumn model =
new ChartColumn(
this.displayName,
this.subSystem,
this.values,
this.isListOfValues,
this.isMultiValued,
this.isCaseSensitive,
this.isGroupable,
this.isEvaluable,
this.isHidden,
this.valueType,
this.originalDisplayName,
this.internalName,
this.intervalGap,
this.intervals,
this.totalIntervalCounts,
this.series);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(ChartColumn model) {
if (model.wasPropertyExplicitlySet("displayName")) {
this.displayName(model.getDisplayName());
}
if (model.wasPropertyExplicitlySet("subSystem")) {
this.subSystem(model.getSubSystem());
}
if (model.wasPropertyExplicitlySet("values")) {
this.values(model.getValues());
}
if (model.wasPropertyExplicitlySet("isListOfValues")) {
this.isListOfValues(model.getIsListOfValues());
}
if (model.wasPropertyExplicitlySet("isMultiValued")) {
this.isMultiValued(model.getIsMultiValued());
}
if (model.wasPropertyExplicitlySet("isCaseSensitive")) {
this.isCaseSensitive(model.getIsCaseSensitive());
}
if (model.wasPropertyExplicitlySet("isGroupable")) {
this.isGroupable(model.getIsGroupable());
}
if (model.wasPropertyExplicitlySet("isEvaluable")) {
this.isEvaluable(model.getIsEvaluable());
}
if (model.wasPropertyExplicitlySet("isHidden")) {
this.isHidden(model.getIsHidden());
}
if (model.wasPropertyExplicitlySet("valueType")) {
this.valueType(model.getValueType());
}
if (model.wasPropertyExplicitlySet("originalDisplayName")) {
this.originalDisplayName(model.getOriginalDisplayName());
}
if (model.wasPropertyExplicitlySet("internalName")) {
this.internalName(model.getInternalName());
}
if (model.wasPropertyExplicitlySet("intervalGap")) {
this.intervalGap(model.getIntervalGap());
}
if (model.wasPropertyExplicitlySet("intervals")) {
this.intervals(model.getIntervals());
}
if (model.wasPropertyExplicitlySet("totalIntervalCounts")) {
this.totalIntervalCounts(model.getTotalIntervalCounts());
}
if (model.wasPropertyExplicitlySet("series")) {
this.series(model.getSeries());
}
return this;
}
}
/** Create a new builder. */
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return new Builder().copy(this);
}
@Deprecated
public ChartColumn(
String displayName,
SubSystemName subSystem,
java.util.List values,
Boolean isListOfValues,
Boolean isMultiValued,
Boolean isCaseSensitive,
Boolean isGroupable,
Boolean isEvaluable,
Boolean isHidden,
ValueType valueType,
String originalDisplayName,
String internalName,
String intervalGap,
java.util.List intervals,
java.util.List totalIntervalCounts,
java.util.List series) {
super(
displayName,
subSystem,
values,
isListOfValues,
isMultiValued,
isCaseSensitive,
isGroupable,
isEvaluable,
isHidden,
valueType,
originalDisplayName,
internalName);
this.intervalGap = intervalGap;
this.intervals = intervals;
this.totalIntervalCounts = totalIntervalCounts;
this.series = series;
}
/** Time span between each timestamp in the timeseries datapoints. */
@com.fasterxml.jackson.annotation.JsonProperty("intervalGap")
private final String intervalGap;
/**
* Time span between each timestamp in the timeseries datapoints.
*
* @return the value
*/
public String getIntervalGap() {
return intervalGap;
}
/** List of timestamps making up the timeseries datapoints. */
@com.fasterxml.jackson.annotation.JsonProperty("intervals")
private final java.util.List intervals;
/**
* List of timestamps making up the timeseries datapoints.
*
* @return the value
*/
public java.util.List getIntervals() {
return intervals;
}
/** Total matching count for each timeseries datapoint. */
@com.fasterxml.jackson.annotation.JsonProperty("totalIntervalCounts")
private final java.util.List totalIntervalCounts;
/**
* Total matching count for each timeseries datapoint.
*
* @return the value
*/
public java.util.List getTotalIntervalCounts() {
return totalIntervalCounts;
}
/** List of series data sets representing various link command results. */
@com.fasterxml.jackson.annotation.JsonProperty("series")
private final java.util.List series;
/**
* List of series data sets representing various link command results.
*
* @return the value
*/
public java.util.List getSeries() {
return series;
}
@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("ChartColumn(");
sb.append("super=").append(super.toString(includeByteArrayContents));
sb.append(", intervalGap=").append(String.valueOf(this.intervalGap));
sb.append(", intervals=").append(String.valueOf(this.intervals));
sb.append(", totalIntervalCounts=").append(String.valueOf(this.totalIntervalCounts));
sb.append(", series=").append(String.valueOf(this.series));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof ChartColumn)) {
return false;
}
ChartColumn other = (ChartColumn) o;
return java.util.Objects.equals(this.intervalGap, other.intervalGap)
&& java.util.Objects.equals(this.intervals, other.intervals)
&& java.util.Objects.equals(this.totalIntervalCounts, other.totalIntervalCounts)
&& java.util.Objects.equals(this.series, other.series)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = super.hashCode();
result = (result * PRIME) + (this.intervalGap == null ? 43 : this.intervalGap.hashCode());
result = (result * PRIME) + (this.intervals == null ? 43 : this.intervals.hashCode());
result =
(result * PRIME)
+ (this.totalIntervalCounts == null
? 43
: this.totalIntervalCounts.hashCode());
result = (result * PRIME) + (this.series == null ? 43 : this.series.hashCode());
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy