com.oracle.bmc.nosql.model.Index Maven / Gradle / Ivy
/**
* 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.nosql.model;
/**
* Information about an index.
* 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: 20190828")
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(builder = Index.Builder.class)
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class Index extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel {
@Deprecated
@java.beans.ConstructorProperties({
"name",
"compartmentId",
"tableName",
"tableId",
"keys",
"lifecycleState",
"lifecycleDetails"
})
public Index(
String name,
String compartmentId,
String tableName,
String tableId,
java.util.List keys,
LifecycleState lifecycleState,
String lifecycleDetails) {
super();
this.name = name;
this.compartmentId = compartmentId;
this.tableName = tableName;
this.tableId = tableId;
this.keys = keys;
this.lifecycleState = lifecycleState;
this.lifecycleDetails = lifecycleDetails;
}
@com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "")
public static class Builder {
/** Index name. */
@com.fasterxml.jackson.annotation.JsonProperty("name")
private String name;
/**
* Index name.
*
* @param name the value to set
* @return this builder
*/
public Builder name(String name) {
this.name = name;
this.__explicitlySet__.add("name");
return this;
}
/** Compartment Identifier. */
@com.fasterxml.jackson.annotation.JsonProperty("compartmentId")
private String compartmentId;
/**
* Compartment Identifier.
*
* @param compartmentId the value to set
* @return this builder
*/
public Builder compartmentId(String compartmentId) {
this.compartmentId = compartmentId;
this.__explicitlySet__.add("compartmentId");
return this;
}
/** The name of the table to which this index belongs. */
@com.fasterxml.jackson.annotation.JsonProperty("tableName")
private String tableName;
/**
* The name of the table to which this index belongs.
*
* @param tableName the value to set
* @return this builder
*/
public Builder tableName(String tableName) {
this.tableName = tableName;
this.__explicitlySet__.add("tableName");
return this;
}
/** the OCID of the table to which this index belongs. */
@com.fasterxml.jackson.annotation.JsonProperty("tableId")
private String tableId;
/**
* the OCID of the table to which this index belongs.
*
* @param tableId the value to set
* @return this builder
*/
public Builder tableId(String tableId) {
this.tableId = tableId;
this.__explicitlySet__.add("tableId");
return this;
}
/** A set of keys for a secondary index. */
@com.fasterxml.jackson.annotation.JsonProperty("keys")
private java.util.List keys;
/**
* A set of keys for a secondary index.
*
* @param keys the value to set
* @return this builder
*/
public Builder keys(java.util.List keys) {
this.keys = keys;
this.__explicitlySet__.add("keys");
return this;
}
/** The state of an index. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleState")
private LifecycleState lifecycleState;
/**
* The state of an index.
*
* @param lifecycleState the value to set
* @return this builder
*/
public Builder lifecycleState(LifecycleState lifecycleState) {
this.lifecycleState = lifecycleState;
this.__explicitlySet__.add("lifecycleState");
return this;
}
/** A message describing the current state in more detail. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleDetails")
private String lifecycleDetails;
/**
* A message describing the current state in more detail.
*
* @param lifecycleDetails the value to set
* @return this builder
*/
public Builder lifecycleDetails(String lifecycleDetails) {
this.lifecycleDetails = lifecycleDetails;
this.__explicitlySet__.add("lifecycleDetails");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public Index build() {
Index model =
new Index(
this.name,
this.compartmentId,
this.tableName,
this.tableId,
this.keys,
this.lifecycleState,
this.lifecycleDetails);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(Index model) {
if (model.wasPropertyExplicitlySet("name")) {
this.name(model.getName());
}
if (model.wasPropertyExplicitlySet("compartmentId")) {
this.compartmentId(model.getCompartmentId());
}
if (model.wasPropertyExplicitlySet("tableName")) {
this.tableName(model.getTableName());
}
if (model.wasPropertyExplicitlySet("tableId")) {
this.tableId(model.getTableId());
}
if (model.wasPropertyExplicitlySet("keys")) {
this.keys(model.getKeys());
}
if (model.wasPropertyExplicitlySet("lifecycleState")) {
this.lifecycleState(model.getLifecycleState());
}
if (model.wasPropertyExplicitlySet("lifecycleDetails")) {
this.lifecycleDetails(model.getLifecycleDetails());
}
return this;
}
}
/** Create a new builder. */
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return new Builder().copy(this);
}
/** Index name. */
@com.fasterxml.jackson.annotation.JsonProperty("name")
private final String name;
/**
* Index name.
*
* @return the value
*/
public String getName() {
return name;
}
/** Compartment Identifier. */
@com.fasterxml.jackson.annotation.JsonProperty("compartmentId")
private final String compartmentId;
/**
* Compartment Identifier.
*
* @return the value
*/
public String getCompartmentId() {
return compartmentId;
}
/** The name of the table to which this index belongs. */
@com.fasterxml.jackson.annotation.JsonProperty("tableName")
private final String tableName;
/**
* The name of the table to which this index belongs.
*
* @return the value
*/
public String getTableName() {
return tableName;
}
/** the OCID of the table to which this index belongs. */
@com.fasterxml.jackson.annotation.JsonProperty("tableId")
private final String tableId;
/**
* the OCID of the table to which this index belongs.
*
* @return the value
*/
public String getTableId() {
return tableId;
}
/** A set of keys for a secondary index. */
@com.fasterxml.jackson.annotation.JsonProperty("keys")
private final java.util.List keys;
/**
* A set of keys for a secondary index.
*
* @return the value
*/
public java.util.List getKeys() {
return keys;
}
/** The state of an index. */
public enum LifecycleState implements com.oracle.bmc.http.internal.BmcEnum {
Creating("CREATING"),
Updating("UPDATING"),
Active("ACTIVE"),
Deleting("DELETING"),
Deleted("DELETED"),
Failed("FAILED"),
/**
* This value is used if a service returns a value for this enum that is not recognized by
* this version of the SDK.
*/
UnknownEnumValue(null);
private static final org.slf4j.Logger LOG =
org.slf4j.LoggerFactory.getLogger(LifecycleState.class);
private final String value;
private static java.util.Map map;
static {
map = new java.util.HashMap<>();
for (LifecycleState v : LifecycleState.values()) {
if (v != UnknownEnumValue) {
map.put(v.getValue(), v);
}
}
}
LifecycleState(String value) {
this.value = value;
}
@com.fasterxml.jackson.annotation.JsonValue
public String getValue() {
return value;
}
@com.fasterxml.jackson.annotation.JsonCreator
public static LifecycleState create(String key) {
if (map.containsKey(key)) {
return map.get(key);
}
LOG.warn(
"Received unknown value '{}' for enum 'LifecycleState', returning UnknownEnumValue",
key);
return UnknownEnumValue;
}
};
/** The state of an index. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleState")
private final LifecycleState lifecycleState;
/**
* The state of an index.
*
* @return the value
*/
public LifecycleState getLifecycleState() {
return lifecycleState;
}
/** A message describing the current state in more detail. */
@com.fasterxml.jackson.annotation.JsonProperty("lifecycleDetails")
private final String lifecycleDetails;
/**
* A message describing the current state in more detail.
*
* @return the value
*/
public String getLifecycleDetails() {
return lifecycleDetails;
}
@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("Index(");
sb.append("super=").append(super.toString());
sb.append("name=").append(String.valueOf(this.name));
sb.append(", compartmentId=").append(String.valueOf(this.compartmentId));
sb.append(", tableName=").append(String.valueOf(this.tableName));
sb.append(", tableId=").append(String.valueOf(this.tableId));
sb.append(", keys=").append(String.valueOf(this.keys));
sb.append(", lifecycleState=").append(String.valueOf(this.lifecycleState));
sb.append(", lifecycleDetails=").append(String.valueOf(this.lifecycleDetails));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof Index)) {
return false;
}
Index other = (Index) o;
return java.util.Objects.equals(this.name, other.name)
&& java.util.Objects.equals(this.compartmentId, other.compartmentId)
&& java.util.Objects.equals(this.tableName, other.tableName)
&& java.util.Objects.equals(this.tableId, other.tableId)
&& java.util.Objects.equals(this.keys, other.keys)
&& java.util.Objects.equals(this.lifecycleState, other.lifecycleState)
&& java.util.Objects.equals(this.lifecycleDetails, other.lifecycleDetails)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = 1;
result = (result * PRIME) + (this.name == null ? 43 : this.name.hashCode());
result =
(result * PRIME)
+ (this.compartmentId == null ? 43 : this.compartmentId.hashCode());
result = (result * PRIME) + (this.tableName == null ? 43 : this.tableName.hashCode());
result = (result * PRIME) + (this.tableId == null ? 43 : this.tableId.hashCode());
result = (result * PRIME) + (this.keys == null ? 43 : this.keys.hashCode());
result =
(result * PRIME)
+ (this.lifecycleState == null ? 43 : this.lifecycleState.hashCode());
result =
(result * PRIME)
+ (this.lifecycleDetails == null ? 43 : this.lifecycleDetails.hashCode());
result = (result * PRIME) + super.hashCode();
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy