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

com.oracle.bmc.datalabelingservice.model.SnapshotDatasetDetails Maven / Gradle / Ivy

There is a newer version: 3.50.0
Show 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.datalabelingservice.model;

/**
 * Allows outputting the latest records paired with annotations and write them to object storage.
 * 
* 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: 20211001") @com.fasterxml.jackson.databind.annotation.JsonDeserialize( builder = SnapshotDatasetDetails.Builder.class) @com.fasterxml.jackson.annotation.JsonFilter( com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME) public final class SnapshotDatasetDetails extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel { @Deprecated @java.beans.ConstructorProperties({ "areAnnotationsIncluded", "areUnannotatedRecordsIncluded", "exportDetails", "exportFormat" }) public SnapshotDatasetDetails( Boolean areAnnotationsIncluded, Boolean areUnannotatedRecordsIncluded, ObjectStorageSnapshotExportDetails exportDetails, ExportFormat exportFormat) { super(); this.areAnnotationsIncluded = areAnnotationsIncluded; this.areUnannotatedRecordsIncluded = areUnannotatedRecordsIncluded; this.exportDetails = exportDetails; this.exportFormat = exportFormat; } @com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "") public static class Builder { /** Whether annotations are to be included in the export dataset digest. */ @com.fasterxml.jackson.annotation.JsonProperty("areAnnotationsIncluded") private Boolean areAnnotationsIncluded; /** * Whether annotations are to be included in the export dataset digest. * * @param areAnnotationsIncluded the value to set * @return this builder */ public Builder areAnnotationsIncluded(Boolean areAnnotationsIncluded) { this.areAnnotationsIncluded = areAnnotationsIncluded; this.__explicitlySet__.add("areAnnotationsIncluded"); return this; } /** * Whether to include records that have yet to be annotated in the export dataset digest. */ @com.fasterxml.jackson.annotation.JsonProperty("areUnannotatedRecordsIncluded") private Boolean areUnannotatedRecordsIncluded; /** * Whether to include records that have yet to be annotated in the export dataset digest. * * @param areUnannotatedRecordsIncluded the value to set * @return this builder */ public Builder areUnannotatedRecordsIncluded(Boolean areUnannotatedRecordsIncluded) { this.areUnannotatedRecordsIncluded = areUnannotatedRecordsIncluded; this.__explicitlySet__.add("areUnannotatedRecordsIncluded"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("exportDetails") private ObjectStorageSnapshotExportDetails exportDetails; public Builder exportDetails(ObjectStorageSnapshotExportDetails exportDetails) { this.exportDetails = exportDetails; this.__explicitlySet__.add("exportDetails"); return this; } @com.fasterxml.jackson.annotation.JsonProperty("exportFormat") private ExportFormat exportFormat; public Builder exportFormat(ExportFormat exportFormat) { this.exportFormat = exportFormat; this.__explicitlySet__.add("exportFormat"); return this; } @com.fasterxml.jackson.annotation.JsonIgnore private final java.util.Set __explicitlySet__ = new java.util.HashSet(); public SnapshotDatasetDetails build() { SnapshotDatasetDetails model = new SnapshotDatasetDetails( this.areAnnotationsIncluded, this.areUnannotatedRecordsIncluded, this.exportDetails, this.exportFormat); for (String explicitlySetProperty : this.__explicitlySet__) { model.markPropertyAsExplicitlySet(explicitlySetProperty); } return model; } @com.fasterxml.jackson.annotation.JsonIgnore public Builder copy(SnapshotDatasetDetails model) { if (model.wasPropertyExplicitlySet("areAnnotationsIncluded")) { this.areAnnotationsIncluded(model.getAreAnnotationsIncluded()); } if (model.wasPropertyExplicitlySet("areUnannotatedRecordsIncluded")) { this.areUnannotatedRecordsIncluded(model.getAreUnannotatedRecordsIncluded()); } if (model.wasPropertyExplicitlySet("exportDetails")) { this.exportDetails(model.getExportDetails()); } if (model.wasPropertyExplicitlySet("exportFormat")) { this.exportFormat(model.getExportFormat()); } return this; } } /** Create a new builder. */ public static Builder builder() { return new Builder(); } public Builder toBuilder() { return new Builder().copy(this); } /** Whether annotations are to be included in the export dataset digest. */ @com.fasterxml.jackson.annotation.JsonProperty("areAnnotationsIncluded") private final Boolean areAnnotationsIncluded; /** * Whether annotations are to be included in the export dataset digest. * * @return the value */ public Boolean getAreAnnotationsIncluded() { return areAnnotationsIncluded; } /** Whether to include records that have yet to be annotated in the export dataset digest. */ @com.fasterxml.jackson.annotation.JsonProperty("areUnannotatedRecordsIncluded") private final Boolean areUnannotatedRecordsIncluded; /** * Whether to include records that have yet to be annotated in the export dataset digest. * * @return the value */ public Boolean getAreUnannotatedRecordsIncluded() { return areUnannotatedRecordsIncluded; } @com.fasterxml.jackson.annotation.JsonProperty("exportDetails") private final ObjectStorageSnapshotExportDetails exportDetails; public ObjectStorageSnapshotExportDetails getExportDetails() { return exportDetails; } @com.fasterxml.jackson.annotation.JsonProperty("exportFormat") private final ExportFormat exportFormat; public ExportFormat getExportFormat() { return exportFormat; } @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("SnapshotDatasetDetails("); sb.append("super=").append(super.toString()); sb.append("areAnnotationsIncluded=").append(String.valueOf(this.areAnnotationsIncluded)); sb.append(", areUnannotatedRecordsIncluded=") .append(String.valueOf(this.areUnannotatedRecordsIncluded)); sb.append(", exportDetails=").append(String.valueOf(this.exportDetails)); sb.append(", exportFormat=").append(String.valueOf(this.exportFormat)); sb.append(")"); return sb.toString(); } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof SnapshotDatasetDetails)) { return false; } SnapshotDatasetDetails other = (SnapshotDatasetDetails) o; return java.util.Objects.equals(this.areAnnotationsIncluded, other.areAnnotationsIncluded) && java.util.Objects.equals( this.areUnannotatedRecordsIncluded, other.areUnannotatedRecordsIncluded) && java.util.Objects.equals(this.exportDetails, other.exportDetails) && java.util.Objects.equals(this.exportFormat, other.exportFormat) && super.equals(other); } @Override public int hashCode() { final int PRIME = 59; int result = 1; result = (result * PRIME) + (this.areAnnotationsIncluded == null ? 43 : this.areAnnotationsIncluded.hashCode()); result = (result * PRIME) + (this.areUnannotatedRecordsIncluded == null ? 43 : this.areUnannotatedRecordsIncluded.hashCode()); result = (result * PRIME) + (this.exportDetails == null ? 43 : this.exportDetails.hashCode()); result = (result * PRIME) + (this.exportFormat == null ? 43 : this.exportFormat.hashCode()); result = (result * PRIME) + super.hashCode(); return result; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy