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

com.amazonaws.services.sagemaker.model.DescribeTrialComponentResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon SageMaker module holds the client classes that are used for communicating with Amazon SageMaker Service

The newest version!
/*
 * Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
 * the License. A copy of the License is located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
 * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package com.amazonaws.services.sagemaker.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 
 * @see AWS
 *      API Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeTrialComponentResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {

    /**
     * 

* The name of the trial component. *

*/ private String trialComponentName; /** *

* The Amazon Resource Name (ARN) of the trial component. *

*/ private String trialComponentArn; /** *

* The name of the component as displayed. If DisplayName isn't specified, * TrialComponentName is displayed. *

*/ private String displayName; /** *

* The Amazon Resource Name (ARN) of the source and, optionally, the job type. *

*/ private TrialComponentSource source; /** *

* The status of the component. States include: *

*
    *
  • *

    * InProgress *

    *
  • *
  • *

    * Completed *

    *
  • *
  • *

    * Failed *

    *
  • *
*/ private TrialComponentStatus status; /** *

* When the component started. *

*/ private java.util.Date startTime; /** *

* When the component ended. *

*/ private java.util.Date endTime; /** *

* When the component was created. *

*/ private java.util.Date creationTime; /** *

* Who created the trial component. *

*/ private UserContext createdBy; /** *

* When the component was last modified. *

*/ private java.util.Date lastModifiedTime; /** *

* Who last modified the component. *

*/ private UserContext lastModifiedBy; /** *

* The hyperparameters of the component. *

*/ private java.util.Map parameters; /** *

* The input artifacts of the component. *

*/ private java.util.Map inputArtifacts; /** *

* The output artifacts of the component. *

*/ private java.util.Map outputArtifacts; private MetadataProperties metadataProperties; /** *

* The metrics for the component. *

*/ private java.util.List metrics; /** *

* The Amazon Resource Name (ARN) of the lineage group. *

*/ private String lineageGroupArn; /** *

* A list of ARNs and, if applicable, job types for multiple sources of an experiment run. *

*/ private java.util.List sources; /** *

* The name of the trial component. *

* * @param trialComponentName * The name of the trial component. */ public void setTrialComponentName(String trialComponentName) { this.trialComponentName = trialComponentName; } /** *

* The name of the trial component. *

* * @return The name of the trial component. */ public String getTrialComponentName() { return this.trialComponentName; } /** *

* The name of the trial component. *

* * @param trialComponentName * The name of the trial component. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withTrialComponentName(String trialComponentName) { setTrialComponentName(trialComponentName); return this; } /** *

* The Amazon Resource Name (ARN) of the trial component. *

* * @param trialComponentArn * The Amazon Resource Name (ARN) of the trial component. */ public void setTrialComponentArn(String trialComponentArn) { this.trialComponentArn = trialComponentArn; } /** *

* The Amazon Resource Name (ARN) of the trial component. *

* * @return The Amazon Resource Name (ARN) of the trial component. */ public String getTrialComponentArn() { return this.trialComponentArn; } /** *

* The Amazon Resource Name (ARN) of the trial component. *

* * @param trialComponentArn * The Amazon Resource Name (ARN) of the trial component. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withTrialComponentArn(String trialComponentArn) { setTrialComponentArn(trialComponentArn); return this; } /** *

* The name of the component as displayed. If DisplayName isn't specified, * TrialComponentName is displayed. *

* * @param displayName * The name of the component as displayed. If DisplayName isn't specified, * TrialComponentName is displayed. */ public void setDisplayName(String displayName) { this.displayName = displayName; } /** *

* The name of the component as displayed. If DisplayName isn't specified, * TrialComponentName is displayed. *

* * @return The name of the component as displayed. If DisplayName isn't specified, * TrialComponentName is displayed. */ public String getDisplayName() { return this.displayName; } /** *

* The name of the component as displayed. If DisplayName isn't specified, * TrialComponentName is displayed. *

* * @param displayName * The name of the component as displayed. If DisplayName isn't specified, * TrialComponentName is displayed. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withDisplayName(String displayName) { setDisplayName(displayName); return this; } /** *

* The Amazon Resource Name (ARN) of the source and, optionally, the job type. *

* * @param source * The Amazon Resource Name (ARN) of the source and, optionally, the job type. */ public void setSource(TrialComponentSource source) { this.source = source; } /** *

* The Amazon Resource Name (ARN) of the source and, optionally, the job type. *

* * @return The Amazon Resource Name (ARN) of the source and, optionally, the job type. */ public TrialComponentSource getSource() { return this.source; } /** *

* The Amazon Resource Name (ARN) of the source and, optionally, the job type. *

* * @param source * The Amazon Resource Name (ARN) of the source and, optionally, the job type. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withSource(TrialComponentSource source) { setSource(source); return this; } /** *

* The status of the component. States include: *

*
    *
  • *

    * InProgress *

    *
  • *
  • *

    * Completed *

    *
  • *
  • *

    * Failed *

    *
  • *
* * @param status * The status of the component. States include:

*
    *
  • *

    * InProgress *

    *
  • *
  • *

    * Completed *

    *
  • *
  • *

    * Failed *

    *
  • */ public void setStatus(TrialComponentStatus status) { this.status = status; } /** *

    * The status of the component. States include: *

    *
      *
    • *

      * InProgress *

      *
    • *
    • *

      * Completed *

      *
    • *
    • *

      * Failed *

      *
    • *
    * * @return The status of the component. States include:

    *
      *
    • *

      * InProgress *

      *
    • *
    • *

      * Completed *

      *
    • *
    • *

      * Failed *

      *
    • */ public TrialComponentStatus getStatus() { return this.status; } /** *

      * The status of the component. States include: *

      *
        *
      • *

        * InProgress *

        *
      • *
      • *

        * Completed *

        *
      • *
      • *

        * Failed *

        *
      • *
      * * @param status * The status of the component. States include:

      *
        *
      • *

        * InProgress *

        *
      • *
      • *

        * Completed *

        *
      • *
      • *

        * Failed *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withStatus(TrialComponentStatus status) { setStatus(status); return this; } /** *

        * When the component started. *

        * * @param startTime * When the component started. */ public void setStartTime(java.util.Date startTime) { this.startTime = startTime; } /** *

        * When the component started. *

        * * @return When the component started. */ public java.util.Date getStartTime() { return this.startTime; } /** *

        * When the component started. *

        * * @param startTime * When the component started. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withStartTime(java.util.Date startTime) { setStartTime(startTime); return this; } /** *

        * When the component ended. *

        * * @param endTime * When the component ended. */ public void setEndTime(java.util.Date endTime) { this.endTime = endTime; } /** *

        * When the component ended. *

        * * @return When the component ended. */ public java.util.Date getEndTime() { return this.endTime; } /** *

        * When the component ended. *

        * * @param endTime * When the component ended. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withEndTime(java.util.Date endTime) { setEndTime(endTime); return this; } /** *

        * When the component was created. *

        * * @param creationTime * When the component was created. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** *

        * When the component was created. *

        * * @return When the component was created. */ public java.util.Date getCreationTime() { return this.creationTime; } /** *

        * When the component was created. *

        * * @param creationTime * When the component was created. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** *

        * Who created the trial component. *

        * * @param createdBy * Who created the trial component. */ public void setCreatedBy(UserContext createdBy) { this.createdBy = createdBy; } /** *

        * Who created the trial component. *

        * * @return Who created the trial component. */ public UserContext getCreatedBy() { return this.createdBy; } /** *

        * Who created the trial component. *

        * * @param createdBy * Who created the trial component. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withCreatedBy(UserContext createdBy) { setCreatedBy(createdBy); return this; } /** *

        * When the component was last modified. *

        * * @param lastModifiedTime * When the component was last modified. */ public void setLastModifiedTime(java.util.Date lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; } /** *

        * When the component was last modified. *

        * * @return When the component was last modified. */ public java.util.Date getLastModifiedTime() { return this.lastModifiedTime; } /** *

        * When the component was last modified. *

        * * @param lastModifiedTime * When the component was last modified. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withLastModifiedTime(java.util.Date lastModifiedTime) { setLastModifiedTime(lastModifiedTime); return this; } /** *

        * Who last modified the component. *

        * * @param lastModifiedBy * Who last modified the component. */ public void setLastModifiedBy(UserContext lastModifiedBy) { this.lastModifiedBy = lastModifiedBy; } /** *

        * Who last modified the component. *

        * * @return Who last modified the component. */ public UserContext getLastModifiedBy() { return this.lastModifiedBy; } /** *

        * Who last modified the component. *

        * * @param lastModifiedBy * Who last modified the component. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withLastModifiedBy(UserContext lastModifiedBy) { setLastModifiedBy(lastModifiedBy); return this; } /** *

        * The hyperparameters of the component. *

        * * @return The hyperparameters of the component. */ public java.util.Map getParameters() { return parameters; } /** *

        * The hyperparameters of the component. *

        * * @param parameters * The hyperparameters of the component. */ public void setParameters(java.util.Map parameters) { this.parameters = parameters; } /** *

        * The hyperparameters of the component. *

        * * @param parameters * The hyperparameters of the component. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withParameters(java.util.Map parameters) { setParameters(parameters); return this; } /** * Add a single Parameters entry * * @see DescribeTrialComponentResult#withParameters * @returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult addParametersEntry(String key, TrialComponentParameterValue value) { if (null == this.parameters) { this.parameters = new java.util.HashMap(); } if (this.parameters.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.parameters.put(key, value); return this; } /** * Removes all the entries added into Parameters. * * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult clearParametersEntries() { this.parameters = null; return this; } /** *

        * The input artifacts of the component. *

        * * @return The input artifacts of the component. */ public java.util.Map getInputArtifacts() { return inputArtifacts; } /** *

        * The input artifacts of the component. *

        * * @param inputArtifacts * The input artifacts of the component. */ public void setInputArtifacts(java.util.Map inputArtifacts) { this.inputArtifacts = inputArtifacts; } /** *

        * The input artifacts of the component. *

        * * @param inputArtifacts * The input artifacts of the component. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withInputArtifacts(java.util.Map inputArtifacts) { setInputArtifacts(inputArtifacts); return this; } /** * Add a single InputArtifacts entry * * @see DescribeTrialComponentResult#withInputArtifacts * @returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult addInputArtifactsEntry(String key, TrialComponentArtifact value) { if (null == this.inputArtifacts) { this.inputArtifacts = new java.util.HashMap(); } if (this.inputArtifacts.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.inputArtifacts.put(key, value); return this; } /** * Removes all the entries added into InputArtifacts. * * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult clearInputArtifactsEntries() { this.inputArtifacts = null; return this; } /** *

        * The output artifacts of the component. *

        * * @return The output artifacts of the component. */ public java.util.Map getOutputArtifacts() { return outputArtifacts; } /** *

        * The output artifacts of the component. *

        * * @param outputArtifacts * The output artifacts of the component. */ public void setOutputArtifacts(java.util.Map outputArtifacts) { this.outputArtifacts = outputArtifacts; } /** *

        * The output artifacts of the component. *

        * * @param outputArtifacts * The output artifacts of the component. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withOutputArtifacts(java.util.Map outputArtifacts) { setOutputArtifacts(outputArtifacts); return this; } /** * Add a single OutputArtifacts entry * * @see DescribeTrialComponentResult#withOutputArtifacts * @returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult addOutputArtifactsEntry(String key, TrialComponentArtifact value) { if (null == this.outputArtifacts) { this.outputArtifacts = new java.util.HashMap(); } if (this.outputArtifacts.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.outputArtifacts.put(key, value); return this; } /** * Removes all the entries added into OutputArtifacts. * * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult clearOutputArtifactsEntries() { this.outputArtifacts = null; return this; } /** * @param metadataProperties */ public void setMetadataProperties(MetadataProperties metadataProperties) { this.metadataProperties = metadataProperties; } /** * @return */ public MetadataProperties getMetadataProperties() { return this.metadataProperties; } /** * @param metadataProperties * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withMetadataProperties(MetadataProperties metadataProperties) { setMetadataProperties(metadataProperties); return this; } /** *

        * The metrics for the component. *

        * * @return The metrics for the component. */ public java.util.List getMetrics() { return metrics; } /** *

        * The metrics for the component. *

        * * @param metrics * The metrics for the component. */ public void setMetrics(java.util.Collection metrics) { if (metrics == null) { this.metrics = null; return; } this.metrics = new java.util.ArrayList(metrics); } /** *

        * The metrics for the component. *

        *

        * NOTE: This method appends the values to the existing list (if any). Use * {@link #setMetrics(java.util.Collection)} or {@link #withMetrics(java.util.Collection)} if you want to override * the existing values. *

        * * @param metrics * The metrics for the component. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withMetrics(TrialComponentMetricSummary... metrics) { if (this.metrics == null) { setMetrics(new java.util.ArrayList(metrics.length)); } for (TrialComponentMetricSummary ele : metrics) { this.metrics.add(ele); } return this; } /** *

        * The metrics for the component. *

        * * @param metrics * The metrics for the component. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withMetrics(java.util.Collection metrics) { setMetrics(metrics); return this; } /** *

        * The Amazon Resource Name (ARN) of the lineage group. *

        * * @param lineageGroupArn * The Amazon Resource Name (ARN) of the lineage group. */ public void setLineageGroupArn(String lineageGroupArn) { this.lineageGroupArn = lineageGroupArn; } /** *

        * The Amazon Resource Name (ARN) of the lineage group. *

        * * @return The Amazon Resource Name (ARN) of the lineage group. */ public String getLineageGroupArn() { return this.lineageGroupArn; } /** *

        * The Amazon Resource Name (ARN) of the lineage group. *

        * * @param lineageGroupArn * The Amazon Resource Name (ARN) of the lineage group. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withLineageGroupArn(String lineageGroupArn) { setLineageGroupArn(lineageGroupArn); return this; } /** *

        * A list of ARNs and, if applicable, job types for multiple sources of an experiment run. *

        * * @return A list of ARNs and, if applicable, job types for multiple sources of an experiment run. */ public java.util.List getSources() { return sources; } /** *

        * A list of ARNs and, if applicable, job types for multiple sources of an experiment run. *

        * * @param sources * A list of ARNs and, if applicable, job types for multiple sources of an experiment run. */ public void setSources(java.util.Collection sources) { if (sources == null) { this.sources = null; return; } this.sources = new java.util.ArrayList(sources); } /** *

        * A list of ARNs and, if applicable, job types for multiple sources of an experiment run. *

        *

        * NOTE: This method appends the values to the existing list (if any). Use * {@link #setSources(java.util.Collection)} or {@link #withSources(java.util.Collection)} if you want to override * the existing values. *

        * * @param sources * A list of ARNs and, if applicable, job types for multiple sources of an experiment run. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withSources(TrialComponentSource... sources) { if (this.sources == null) { setSources(new java.util.ArrayList(sources.length)); } for (TrialComponentSource ele : sources) { this.sources.add(ele); } return this; } /** *

        * A list of ARNs and, if applicable, job types for multiple sources of an experiment run. *

        * * @param sources * A list of ARNs and, if applicable, job types for multiple sources of an experiment run. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeTrialComponentResult withSources(java.util.Collection sources) { setSources(sources); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getTrialComponentName() != null) sb.append("TrialComponentName: ").append(getTrialComponentName()).append(","); if (getTrialComponentArn() != null) sb.append("TrialComponentArn: ").append(getTrialComponentArn()).append(","); if (getDisplayName() != null) sb.append("DisplayName: ").append(getDisplayName()).append(","); if (getSource() != null) sb.append("Source: ").append(getSource()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getStartTime() != null) sb.append("StartTime: ").append(getStartTime()).append(","); if (getEndTime() != null) sb.append("EndTime: ").append(getEndTime()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getCreatedBy() != null) sb.append("CreatedBy: ").append(getCreatedBy()).append(","); if (getLastModifiedTime() != null) sb.append("LastModifiedTime: ").append(getLastModifiedTime()).append(","); if (getLastModifiedBy() != null) sb.append("LastModifiedBy: ").append(getLastModifiedBy()).append(","); if (getParameters() != null) sb.append("Parameters: ").append(getParameters()).append(","); if (getInputArtifacts() != null) sb.append("InputArtifacts: ").append(getInputArtifacts()).append(","); if (getOutputArtifacts() != null) sb.append("OutputArtifacts: ").append(getOutputArtifacts()).append(","); if (getMetadataProperties() != null) sb.append("MetadataProperties: ").append(getMetadataProperties()).append(","); if (getMetrics() != null) sb.append("Metrics: ").append(getMetrics()).append(","); if (getLineageGroupArn() != null) sb.append("LineageGroupArn: ").append(getLineageGroupArn()).append(","); if (getSources() != null) sb.append("Sources: ").append(getSources()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeTrialComponentResult == false) return false; DescribeTrialComponentResult other = (DescribeTrialComponentResult) obj; if (other.getTrialComponentName() == null ^ this.getTrialComponentName() == null) return false; if (other.getTrialComponentName() != null && other.getTrialComponentName().equals(this.getTrialComponentName()) == false) return false; if (other.getTrialComponentArn() == null ^ this.getTrialComponentArn() == null) return false; if (other.getTrialComponentArn() != null && other.getTrialComponentArn().equals(this.getTrialComponentArn()) == false) return false; if (other.getDisplayName() == null ^ this.getDisplayName() == null) return false; if (other.getDisplayName() != null && other.getDisplayName().equals(this.getDisplayName()) == false) return false; if (other.getSource() == null ^ this.getSource() == null) return false; if (other.getSource() != null && other.getSource().equals(this.getSource()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getStartTime() == null ^ this.getStartTime() == null) return false; if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false) return false; if (other.getEndTime() == null ^ this.getEndTime() == null) return false; if (other.getEndTime() != null && other.getEndTime().equals(this.getEndTime()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false) return false; if (other.getCreatedBy() == null ^ this.getCreatedBy() == null) return false; if (other.getCreatedBy() != null && other.getCreatedBy().equals(this.getCreatedBy()) == false) return false; if (other.getLastModifiedTime() == null ^ this.getLastModifiedTime() == null) return false; if (other.getLastModifiedTime() != null && other.getLastModifiedTime().equals(this.getLastModifiedTime()) == false) return false; if (other.getLastModifiedBy() == null ^ this.getLastModifiedBy() == null) return false; if (other.getLastModifiedBy() != null && other.getLastModifiedBy().equals(this.getLastModifiedBy()) == false) return false; if (other.getParameters() == null ^ this.getParameters() == null) return false; if (other.getParameters() != null && other.getParameters().equals(this.getParameters()) == false) return false; if (other.getInputArtifacts() == null ^ this.getInputArtifacts() == null) return false; if (other.getInputArtifacts() != null && other.getInputArtifacts().equals(this.getInputArtifacts()) == false) return false; if (other.getOutputArtifacts() == null ^ this.getOutputArtifacts() == null) return false; if (other.getOutputArtifacts() != null && other.getOutputArtifacts().equals(this.getOutputArtifacts()) == false) return false; if (other.getMetadataProperties() == null ^ this.getMetadataProperties() == null) return false; if (other.getMetadataProperties() != null && other.getMetadataProperties().equals(this.getMetadataProperties()) == false) return false; if (other.getMetrics() == null ^ this.getMetrics() == null) return false; if (other.getMetrics() != null && other.getMetrics().equals(this.getMetrics()) == false) return false; if (other.getLineageGroupArn() == null ^ this.getLineageGroupArn() == null) return false; if (other.getLineageGroupArn() != null && other.getLineageGroupArn().equals(this.getLineageGroupArn()) == false) return false; if (other.getSources() == null ^ this.getSources() == null) return false; if (other.getSources() != null && other.getSources().equals(this.getSources()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTrialComponentName() == null) ? 0 : getTrialComponentName().hashCode()); hashCode = prime * hashCode + ((getTrialComponentArn() == null) ? 0 : getTrialComponentArn().hashCode()); hashCode = prime * hashCode + ((getDisplayName() == null) ? 0 : getDisplayName().hashCode()); hashCode = prime * hashCode + ((getSource() == null) ? 0 : getSource().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode()); hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getCreatedBy() == null) ? 0 : getCreatedBy().hashCode()); hashCode = prime * hashCode + ((getLastModifiedTime() == null) ? 0 : getLastModifiedTime().hashCode()); hashCode = prime * hashCode + ((getLastModifiedBy() == null) ? 0 : getLastModifiedBy().hashCode()); hashCode = prime * hashCode + ((getParameters() == null) ? 0 : getParameters().hashCode()); hashCode = prime * hashCode + ((getInputArtifacts() == null) ? 0 : getInputArtifacts().hashCode()); hashCode = prime * hashCode + ((getOutputArtifacts() == null) ? 0 : getOutputArtifacts().hashCode()); hashCode = prime * hashCode + ((getMetadataProperties() == null) ? 0 : getMetadataProperties().hashCode()); hashCode = prime * hashCode + ((getMetrics() == null) ? 0 : getMetrics().hashCode()); hashCode = prime * hashCode + ((getLineageGroupArn() == null) ? 0 : getLineageGroupArn().hashCode()); hashCode = prime * hashCode + ((getSources() == null) ? 0 : getSources().hashCode()); return hashCode; } @Override public DescribeTrialComponentResult clone() { try { return (DescribeTrialComponentResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy