![JAR search and dependency download from the Maven repository](/logo.png)
com.oracle.bmc.loganalytics.model.ClassifyColumn 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 containing query results produced by the query language classify 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 = ClassifyColumn.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 ClassifyColumn 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;
}
/** A list of fields specified in the classify command in the query string. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyFieldNames")
private java.util.List classifyFieldNames;
/**
* A list of fields specified in the classify command in the query string.
*
* @param classifyFieldNames the value to set
* @return this builder
*/
public Builder classifyFieldNames(java.util.List classifyFieldNames) {
this.classifyFieldNames = classifyFieldNames;
this.__explicitlySet__.add("classifyFieldNames");
return this;
}
/**
* Count of nulls found in each of the fields specified in the classify command in the query
* string.
*/
@com.fasterxml.jackson.annotation.JsonProperty("classifyFieldNullCount")
private java.util.List classifyFieldNullCount;
/**
* Count of nulls found in each of the fields specified in the classify command in the query
* string.
*
* @param classifyFieldNullCount the value to set
* @return this builder
*/
public Builder classifyFieldNullCount(java.util.List classifyFieldNullCount) {
this.classifyFieldNullCount = classifyFieldNullCount;
this.__explicitlySet__.add("classifyFieldNullCount");
return this;
}
/** Count of anomalies for each timeseries datapoint. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyAnomalyIntervalCounts")
private java.util.List classifyAnomalyIntervalCounts;
/**
* Count of anomalies for each timeseries datapoint.
*
* @param classifyAnomalyIntervalCounts the value to set
* @return this builder
*/
public Builder classifyAnomalyIntervalCounts(
java.util.List classifyAnomalyIntervalCounts) {
this.classifyAnomalyIntervalCounts = classifyAnomalyIntervalCounts;
this.__explicitlySet__.add("classifyAnomalyIntervalCounts");
return this;
}
/** Column descriptors for the classify result. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyColumns")
private java.util.List classifyColumns;
/**
* Column descriptors for the classify result.
*
* @param classifyColumns the value to set
* @return this builder
*/
public Builder classifyColumns(java.util.List classifyColumns) {
this.classifyColumns = classifyColumns;
this.__explicitlySet__.add("classifyColumns");
return this;
}
/** Results of the classify command. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyResult")
private java.util.List> classifyResult;
/**
* Results of the classify command.
*
* @param classifyResult the value to set
* @return this builder
*/
public Builder classifyResult(
java.util.List> classifyResult) {
this.classifyResult = classifyResult;
this.__explicitlySet__.add("classifyResult");
return this;
}
/** Column descriptors of fields with strong correlation with the classify fields. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyCorrelateColumns")
private java.util.List classifyCorrelateColumns;
/**
* Column descriptors of fields with strong correlation with the classify fields.
*
* @param classifyCorrelateColumns the value to set
* @return this builder
*/
public Builder classifyCorrelateColumns(
java.util.List classifyCorrelateColumns) {
this.classifyCorrelateColumns = classifyCorrelateColumns;
this.__explicitlySet__.add("classifyCorrelateColumns");
return this;
}
/** Correlation results of the classify command. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyCorrelateResult")
private java.util.List> classifyCorrelateResult;
/**
* Correlation results of the classify command.
*
* @param classifyCorrelateResult the value to set
* @return this builder
*/
public Builder classifyCorrelateResult(
java.util.List> classifyCorrelateResult) {
this.classifyCorrelateResult = classifyCorrelateResult;
this.__explicitlySet__.add("classifyCorrelateResult");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public ClassifyColumn build() {
ClassifyColumn model =
new ClassifyColumn(
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.classifyFieldNames,
this.classifyFieldNullCount,
this.classifyAnomalyIntervalCounts,
this.classifyColumns,
this.classifyResult,
this.classifyCorrelateColumns,
this.classifyCorrelateResult);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(ClassifyColumn 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("classifyFieldNames")) {
this.classifyFieldNames(model.getClassifyFieldNames());
}
if (model.wasPropertyExplicitlySet("classifyFieldNullCount")) {
this.classifyFieldNullCount(model.getClassifyFieldNullCount());
}
if (model.wasPropertyExplicitlySet("classifyAnomalyIntervalCounts")) {
this.classifyAnomalyIntervalCounts(model.getClassifyAnomalyIntervalCounts());
}
if (model.wasPropertyExplicitlySet("classifyColumns")) {
this.classifyColumns(model.getClassifyColumns());
}
if (model.wasPropertyExplicitlySet("classifyResult")) {
this.classifyResult(model.getClassifyResult());
}
if (model.wasPropertyExplicitlySet("classifyCorrelateColumns")) {
this.classifyCorrelateColumns(model.getClassifyCorrelateColumns());
}
if (model.wasPropertyExplicitlySet("classifyCorrelateResult")) {
this.classifyCorrelateResult(model.getClassifyCorrelateResult());
}
return this;
}
}
/** Create a new builder. */
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return new Builder().copy(this);
}
@Deprecated
public ClassifyColumn(
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,
java.util.List classifyFieldNames,
java.util.List classifyFieldNullCount,
java.util.List classifyAnomalyIntervalCounts,
java.util.List classifyColumns,
java.util.List> classifyResult,
java.util.List classifyCorrelateColumns,
java.util.List> classifyCorrelateResult) {
super(
displayName,
subSystem,
values,
isListOfValues,
isMultiValued,
isCaseSensitive,
isGroupable,
isEvaluable,
isHidden,
valueType,
originalDisplayName,
internalName);
this.classifyFieldNames = classifyFieldNames;
this.classifyFieldNullCount = classifyFieldNullCount;
this.classifyAnomalyIntervalCounts = classifyAnomalyIntervalCounts;
this.classifyColumns = classifyColumns;
this.classifyResult = classifyResult;
this.classifyCorrelateColumns = classifyCorrelateColumns;
this.classifyCorrelateResult = classifyCorrelateResult;
}
/** A list of fields specified in the classify command in the query string. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyFieldNames")
private final java.util.List classifyFieldNames;
/**
* A list of fields specified in the classify command in the query string.
*
* @return the value
*/
public java.util.List getClassifyFieldNames() {
return classifyFieldNames;
}
/**
* Count of nulls found in each of the fields specified in the classify command in the query
* string.
*/
@com.fasterxml.jackson.annotation.JsonProperty("classifyFieldNullCount")
private final java.util.List classifyFieldNullCount;
/**
* Count of nulls found in each of the fields specified in the classify command in the query
* string.
*
* @return the value
*/
public java.util.List getClassifyFieldNullCount() {
return classifyFieldNullCount;
}
/** Count of anomalies for each timeseries datapoint. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyAnomalyIntervalCounts")
private final java.util.List classifyAnomalyIntervalCounts;
/**
* Count of anomalies for each timeseries datapoint.
*
* @return the value
*/
public java.util.List getClassifyAnomalyIntervalCounts() {
return classifyAnomalyIntervalCounts;
}
/** Column descriptors for the classify result. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyColumns")
private final java.util.List classifyColumns;
/**
* Column descriptors for the classify result.
*
* @return the value
*/
public java.util.List getClassifyColumns() {
return classifyColumns;
}
/** Results of the classify command. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyResult")
private final java.util.List> classifyResult;
/**
* Results of the classify command.
*
* @return the value
*/
public java.util.List> getClassifyResult() {
return classifyResult;
}
/** Column descriptors of fields with strong correlation with the classify fields. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyCorrelateColumns")
private final java.util.List classifyCorrelateColumns;
/**
* Column descriptors of fields with strong correlation with the classify fields.
*
* @return the value
*/
public java.util.List getClassifyCorrelateColumns() {
return classifyCorrelateColumns;
}
/** Correlation results of the classify command. */
@com.fasterxml.jackson.annotation.JsonProperty("classifyCorrelateResult")
private final java.util.List> classifyCorrelateResult;
/**
* Correlation results of the classify command.
*
* @return the value
*/
public java.util.List> getClassifyCorrelateResult() {
return classifyCorrelateResult;
}
@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("ClassifyColumn(");
sb.append("super=").append(super.toString(includeByteArrayContents));
sb.append(", classifyFieldNames=").append(String.valueOf(this.classifyFieldNames));
sb.append(", classifyFieldNullCount=").append(String.valueOf(this.classifyFieldNullCount));
sb.append(", classifyAnomalyIntervalCounts=")
.append(String.valueOf(this.classifyAnomalyIntervalCounts));
sb.append(", classifyColumns=").append(String.valueOf(this.classifyColumns));
sb.append(", classifyResult=").append(String.valueOf(this.classifyResult));
sb.append(", classifyCorrelateColumns=")
.append(String.valueOf(this.classifyCorrelateColumns));
sb.append(", classifyCorrelateResult=")
.append(String.valueOf(this.classifyCorrelateResult));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof ClassifyColumn)) {
return false;
}
ClassifyColumn other = (ClassifyColumn) o;
return java.util.Objects.equals(this.classifyFieldNames, other.classifyFieldNames)
&& java.util.Objects.equals(
this.classifyFieldNullCount, other.classifyFieldNullCount)
&& java.util.Objects.equals(
this.classifyAnomalyIntervalCounts, other.classifyAnomalyIntervalCounts)
&& java.util.Objects.equals(this.classifyColumns, other.classifyColumns)
&& java.util.Objects.equals(this.classifyResult, other.classifyResult)
&& java.util.Objects.equals(
this.classifyCorrelateColumns, other.classifyCorrelateColumns)
&& java.util.Objects.equals(
this.classifyCorrelateResult, other.classifyCorrelateResult)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = super.hashCode();
result =
(result * PRIME)
+ (this.classifyFieldNames == null
? 43
: this.classifyFieldNames.hashCode());
result =
(result * PRIME)
+ (this.classifyFieldNullCount == null
? 43
: this.classifyFieldNullCount.hashCode());
result =
(result * PRIME)
+ (this.classifyAnomalyIntervalCounts == null
? 43
: this.classifyAnomalyIntervalCounts.hashCode());
result =
(result * PRIME)
+ (this.classifyColumns == null ? 43 : this.classifyColumns.hashCode());
result =
(result * PRIME)
+ (this.classifyResult == null ? 43 : this.classifyResult.hashCode());
result =
(result * PRIME)
+ (this.classifyCorrelateColumns == null
? 43
: this.classifyCorrelateColumns.hashCode());
result =
(result * PRIME)
+ (this.classifyCorrelateResult == null
? 43
: this.classifyCorrelateResult.hashCode());
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy