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

com.amazonaws.services.forecast.model.DescribeWhatIfForecastResult Maven / Gradle / Ivy

Go to download

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

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

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

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

    /**
     * 

* The name of the what-if forecast. *

*/ private String whatIfForecastName; /** *

* The Amazon Resource Name (ARN) of the what-if forecast. *

*/ private String whatIfForecastArn; /** *

* The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast. *

*/ private String whatIfAnalysisArn; /** *

* The approximate time remaining to complete the what-if forecast, in minutes. *

*/ private Long estimatedTimeRemainingInMinutes; /** *

* The status of the what-if forecast. States include: *

*
    *
  • *

    * ACTIVE *

    *
  • *
  • *

    * CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED *

    *
  • *
  • *

    * CREATE_STOPPING, CREATE_STOPPED *

    *
  • *
  • *

    * DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED *

    *
  • *
* *

* The Status of the what-if forecast must be ACTIVE before you can access the forecast. *

*
*/ private String status; /** *

* If an error occurred, an informational message about the error. *

*/ private String message; /** *

* When the what-if forecast was created. *

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

* The last time the resource was modified. The timestamp depends on the status of the job: *

*
    *
  • *

    * CREATE_PENDING - The CreationTime. *

    *
  • *
  • *

    * CREATE_IN_PROGRESS - The current timestamp. *

    *
  • *
  • *

    * CREATE_STOPPING - The current timestamp. *

    *
  • *
  • *

    * CREATE_STOPPED - When the job stopped. *

    *
  • *
  • *

    * ACTIVE or CREATE_FAILED - When the job finished or failed. *

    *
  • *
*/ private java.util.Date lastModificationTime; /** *

* An array of Action and TimeSeriesConditions elements that describe what transformations * were applied to which time series. *

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

* An array of S3Config, Schema, and Format elements that describe the * replacement time series. *

*/ private TimeSeriesReplacementsDataSource timeSeriesReplacementsDataSource; /** *

* The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per what-if * forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the default values are * ["0.1", "0.5", "0.9"]. *

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

* The name of the what-if forecast. *

* * @param whatIfForecastName * The name of the what-if forecast. */ public void setWhatIfForecastName(String whatIfForecastName) { this.whatIfForecastName = whatIfForecastName; } /** *

* The name of the what-if forecast. *

* * @return The name of the what-if forecast. */ public String getWhatIfForecastName() { return this.whatIfForecastName; } /** *

* The name of the what-if forecast. *

* * @param whatIfForecastName * The name of the what-if forecast. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withWhatIfForecastName(String whatIfForecastName) { setWhatIfForecastName(whatIfForecastName); return this; } /** *

* The Amazon Resource Name (ARN) of the what-if forecast. *

* * @param whatIfForecastArn * The Amazon Resource Name (ARN) of the what-if forecast. */ public void setWhatIfForecastArn(String whatIfForecastArn) { this.whatIfForecastArn = whatIfForecastArn; } /** *

* The Amazon Resource Name (ARN) of the what-if forecast. *

* * @return The Amazon Resource Name (ARN) of the what-if forecast. */ public String getWhatIfForecastArn() { return this.whatIfForecastArn; } /** *

* The Amazon Resource Name (ARN) of the what-if forecast. *

* * @param whatIfForecastArn * The Amazon Resource Name (ARN) of the what-if forecast. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withWhatIfForecastArn(String whatIfForecastArn) { setWhatIfForecastArn(whatIfForecastArn); return this; } /** *

* The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast. *

* * @param whatIfAnalysisArn * The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast. */ public void setWhatIfAnalysisArn(String whatIfAnalysisArn) { this.whatIfAnalysisArn = whatIfAnalysisArn; } /** *

* The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast. *

* * @return The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast. */ public String getWhatIfAnalysisArn() { return this.whatIfAnalysisArn; } /** *

* The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast. *

* * @param whatIfAnalysisArn * The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withWhatIfAnalysisArn(String whatIfAnalysisArn) { setWhatIfAnalysisArn(whatIfAnalysisArn); return this; } /** *

* The approximate time remaining to complete the what-if forecast, in minutes. *

* * @param estimatedTimeRemainingInMinutes * The approximate time remaining to complete the what-if forecast, in minutes. */ public void setEstimatedTimeRemainingInMinutes(Long estimatedTimeRemainingInMinutes) { this.estimatedTimeRemainingInMinutes = estimatedTimeRemainingInMinutes; } /** *

* The approximate time remaining to complete the what-if forecast, in minutes. *

* * @return The approximate time remaining to complete the what-if forecast, in minutes. */ public Long getEstimatedTimeRemainingInMinutes() { return this.estimatedTimeRemainingInMinutes; } /** *

* The approximate time remaining to complete the what-if forecast, in minutes. *

* * @param estimatedTimeRemainingInMinutes * The approximate time remaining to complete the what-if forecast, in minutes. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withEstimatedTimeRemainingInMinutes(Long estimatedTimeRemainingInMinutes) { setEstimatedTimeRemainingInMinutes(estimatedTimeRemainingInMinutes); return this; } /** *

* The status of the what-if forecast. States include: *

*
    *
  • *

    * ACTIVE *

    *
  • *
  • *

    * CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED *

    *
  • *
  • *

    * CREATE_STOPPING, CREATE_STOPPED *

    *
  • *
  • *

    * DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED *

    *
  • *
* *

* The Status of the what-if forecast must be ACTIVE before you can access the forecast. *

*
* * @param status * The status of the what-if forecast. States include:

*
    *
  • *

    * ACTIVE *

    *
  • *
  • *

    * CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED *

    *
  • *
  • *

    * CREATE_STOPPING, CREATE_STOPPED *

    *
  • *
  • *

    * DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED *

    *
  • *
* *

* The Status of the what-if forecast must be ACTIVE before you can access the * forecast. *

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

* The status of the what-if forecast. States include: *

*
    *
  • *

    * ACTIVE *

    *
  • *
  • *

    * CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED *

    *
  • *
  • *

    * CREATE_STOPPING, CREATE_STOPPED *

    *
  • *
  • *

    * DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED *

    *
  • *
* *

* The Status of the what-if forecast must be ACTIVE before you can access the forecast. *

*
* * @return The status of the what-if forecast. States include:

*
    *
  • *

    * ACTIVE *

    *
  • *
  • *

    * CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED *

    *
  • *
  • *

    * CREATE_STOPPING, CREATE_STOPPED *

    *
  • *
  • *

    * DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED *

    *
  • *
* *

* The Status of the what-if forecast must be ACTIVE before you can access the * forecast. *

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

* The status of the what-if forecast. States include: *

*
    *
  • *

    * ACTIVE *

    *
  • *
  • *

    * CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED *

    *
  • *
  • *

    * CREATE_STOPPING, CREATE_STOPPED *

    *
  • *
  • *

    * DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED *

    *
  • *
* *

* The Status of the what-if forecast must be ACTIVE before you can access the forecast. *

*
* * @param status * The status of the what-if forecast. States include:

*
    *
  • *

    * ACTIVE *

    *
  • *
  • *

    * CREATE_PENDING, CREATE_IN_PROGRESS, CREATE_FAILED *

    *
  • *
  • *

    * CREATE_STOPPING, CREATE_STOPPED *

    *
  • *
  • *

    * DELETE_PENDING, DELETE_IN_PROGRESS, DELETE_FAILED *

    *
  • *
* *

* The Status of the what-if forecast must be ACTIVE before you can access the * forecast. *

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

* If an error occurred, an informational message about the error. *

* * @param message * If an error occurred, an informational message about the error. */ public void setMessage(String message) { this.message = message; } /** *

* If an error occurred, an informational message about the error. *

* * @return If an error occurred, an informational message about the error. */ public String getMessage() { return this.message; } /** *

* If an error occurred, an informational message about the error. *

* * @param message * If an error occurred, an informational message about the error. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withMessage(String message) { setMessage(message); return this; } /** *

* When the what-if forecast was created. *

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

* When the what-if forecast was created. *

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

* When the what-if forecast was created. *

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

* The last time the resource was modified. The timestamp depends on the status of the job: *

*
    *
  • *

    * CREATE_PENDING - The CreationTime. *

    *
  • *
  • *

    * CREATE_IN_PROGRESS - The current timestamp. *

    *
  • *
  • *

    * CREATE_STOPPING - The current timestamp. *

    *
  • *
  • *

    * CREATE_STOPPED - When the job stopped. *

    *
  • *
  • *

    * ACTIVE or CREATE_FAILED - When the job finished or failed. *

    *
  • *
* * @param lastModificationTime * The last time the resource was modified. The timestamp depends on the status of the job:

*
    *
  • *

    * CREATE_PENDING - The CreationTime. *

    *
  • *
  • *

    * CREATE_IN_PROGRESS - The current timestamp. *

    *
  • *
  • *

    * CREATE_STOPPING - The current timestamp. *

    *
  • *
  • *

    * CREATE_STOPPED - When the job stopped. *

    *
  • *
  • *

    * ACTIVE or CREATE_FAILED - When the job finished or failed. *

    *
  • */ public void setLastModificationTime(java.util.Date lastModificationTime) { this.lastModificationTime = lastModificationTime; } /** *

    * The last time the resource was modified. The timestamp depends on the status of the job: *

    *
      *
    • *

      * CREATE_PENDING - The CreationTime. *

      *
    • *
    • *

      * CREATE_IN_PROGRESS - The current timestamp. *

      *
    • *
    • *

      * CREATE_STOPPING - The current timestamp. *

      *
    • *
    • *

      * CREATE_STOPPED - When the job stopped. *

      *
    • *
    • *

      * ACTIVE or CREATE_FAILED - When the job finished or failed. *

      *
    • *
    * * @return The last time the resource was modified. The timestamp depends on the status of the job:

    *
      *
    • *

      * CREATE_PENDING - The CreationTime. *

      *
    • *
    • *

      * CREATE_IN_PROGRESS - The current timestamp. *

      *
    • *
    • *

      * CREATE_STOPPING - The current timestamp. *

      *
    • *
    • *

      * CREATE_STOPPED - When the job stopped. *

      *
    • *
    • *

      * ACTIVE or CREATE_FAILED - When the job finished or failed. *

      *
    • */ public java.util.Date getLastModificationTime() { return this.lastModificationTime; } /** *

      * The last time the resource was modified. The timestamp depends on the status of the job: *

      *
        *
      • *

        * CREATE_PENDING - The CreationTime. *

        *
      • *
      • *

        * CREATE_IN_PROGRESS - The current timestamp. *

        *
      • *
      • *

        * CREATE_STOPPING - The current timestamp. *

        *
      • *
      • *

        * CREATE_STOPPED - When the job stopped. *

        *
      • *
      • *

        * ACTIVE or CREATE_FAILED - When the job finished or failed. *

        *
      • *
      * * @param lastModificationTime * The last time the resource was modified. The timestamp depends on the status of the job:

      *
        *
      • *

        * CREATE_PENDING - The CreationTime. *

        *
      • *
      • *

        * CREATE_IN_PROGRESS - The current timestamp. *

        *
      • *
      • *

        * CREATE_STOPPING - The current timestamp. *

        *
      • *
      • *

        * CREATE_STOPPED - When the job stopped. *

        *
      • *
      • *

        * ACTIVE or CREATE_FAILED - When the job finished or failed. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withLastModificationTime(java.util.Date lastModificationTime) { setLastModificationTime(lastModificationTime); return this; } /** *

        * An array of Action and TimeSeriesConditions elements that describe what transformations * were applied to which time series. *

        * * @return An array of Action and TimeSeriesConditions elements that describe what * transformations were applied to which time series. */ public java.util.List getTimeSeriesTransformations() { return timeSeriesTransformations; } /** *

        * An array of Action and TimeSeriesConditions elements that describe what transformations * were applied to which time series. *

        * * @param timeSeriesTransformations * An array of Action and TimeSeriesConditions elements that describe what * transformations were applied to which time series. */ public void setTimeSeriesTransformations(java.util.Collection timeSeriesTransformations) { if (timeSeriesTransformations == null) { this.timeSeriesTransformations = null; return; } this.timeSeriesTransformations = new java.util.ArrayList(timeSeriesTransformations); } /** *

        * An array of Action and TimeSeriesConditions elements that describe what transformations * were applied to which time series. *

        *

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

        * * @param timeSeriesTransformations * An array of Action and TimeSeriesConditions elements that describe what * transformations were applied to which time series. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withTimeSeriesTransformations(TimeSeriesTransformation... timeSeriesTransformations) { if (this.timeSeriesTransformations == null) { setTimeSeriesTransformations(new java.util.ArrayList(timeSeriesTransformations.length)); } for (TimeSeriesTransformation ele : timeSeriesTransformations) { this.timeSeriesTransformations.add(ele); } return this; } /** *

        * An array of Action and TimeSeriesConditions elements that describe what transformations * were applied to which time series. *

        * * @param timeSeriesTransformations * An array of Action and TimeSeriesConditions elements that describe what * transformations were applied to which time series. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withTimeSeriesTransformations(java.util.Collection timeSeriesTransformations) { setTimeSeriesTransformations(timeSeriesTransformations); return this; } /** *

        * An array of S3Config, Schema, and Format elements that describe the * replacement time series. *

        * * @param timeSeriesReplacementsDataSource * An array of S3Config, Schema, and Format elements that describe the * replacement time series. */ public void setTimeSeriesReplacementsDataSource(TimeSeriesReplacementsDataSource timeSeriesReplacementsDataSource) { this.timeSeriesReplacementsDataSource = timeSeriesReplacementsDataSource; } /** *

        * An array of S3Config, Schema, and Format elements that describe the * replacement time series. *

        * * @return An array of S3Config, Schema, and Format elements that describe * the replacement time series. */ public TimeSeriesReplacementsDataSource getTimeSeriesReplacementsDataSource() { return this.timeSeriesReplacementsDataSource; } /** *

        * An array of S3Config, Schema, and Format elements that describe the * replacement time series. *

        * * @param timeSeriesReplacementsDataSource * An array of S3Config, Schema, and Format elements that describe the * replacement time series. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withTimeSeriesReplacementsDataSource(TimeSeriesReplacementsDataSource timeSeriesReplacementsDataSource) { setTimeSeriesReplacementsDataSource(timeSeriesReplacementsDataSource); return this; } /** *

        * The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per what-if * forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the default values are * ["0.1", "0.5", "0.9"]. *

        * * @return The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per * what-if forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the * default values are ["0.1", "0.5", "0.9"]. */ public java.util.List getForecastTypes() { return forecastTypes; } /** *

        * The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per what-if * forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the default values are * ["0.1", "0.5", "0.9"]. *

        * * @param forecastTypes * The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per * what-if forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the * default values are ["0.1", "0.5", "0.9"]. */ public void setForecastTypes(java.util.Collection forecastTypes) { if (forecastTypes == null) { this.forecastTypes = null; return; } this.forecastTypes = new java.util.ArrayList(forecastTypes); } /** *

        * The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per what-if * forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the default values are * ["0.1", "0.5", "0.9"]. *

        *

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

        * * @param forecastTypes * The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per * what-if forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the * default values are ["0.1", "0.5", "0.9"]. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withForecastTypes(String... forecastTypes) { if (this.forecastTypes == null) { setForecastTypes(new java.util.ArrayList(forecastTypes.length)); } for (String ele : forecastTypes) { this.forecastTypes.add(ele); } return this; } /** *

        * The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per what-if * forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the default values are * ["0.1", "0.5", "0.9"]. *

        * * @param forecastTypes * The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per * what-if forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the * default values are ["0.1", "0.5", "0.9"]. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeWhatIfForecastResult withForecastTypes(java.util.Collection forecastTypes) { setForecastTypes(forecastTypes); 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 (getWhatIfForecastName() != null) sb.append("WhatIfForecastName: ").append(getWhatIfForecastName()).append(","); if (getWhatIfForecastArn() != null) sb.append("WhatIfForecastArn: ").append(getWhatIfForecastArn()).append(","); if (getWhatIfAnalysisArn() != null) sb.append("WhatIfAnalysisArn: ").append(getWhatIfAnalysisArn()).append(","); if (getEstimatedTimeRemainingInMinutes() != null) sb.append("EstimatedTimeRemainingInMinutes: ").append(getEstimatedTimeRemainingInMinutes()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getMessage() != null) sb.append("Message: ").append(getMessage()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getLastModificationTime() != null) sb.append("LastModificationTime: ").append(getLastModificationTime()).append(","); if (getTimeSeriesTransformations() != null) sb.append("TimeSeriesTransformations: ").append(getTimeSeriesTransformations()).append(","); if (getTimeSeriesReplacementsDataSource() != null) sb.append("TimeSeriesReplacementsDataSource: ").append(getTimeSeriesReplacementsDataSource()).append(","); if (getForecastTypes() != null) sb.append("ForecastTypes: ").append(getForecastTypes()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DescribeWhatIfForecastResult == false) return false; DescribeWhatIfForecastResult other = (DescribeWhatIfForecastResult) obj; if (other.getWhatIfForecastName() == null ^ this.getWhatIfForecastName() == null) return false; if (other.getWhatIfForecastName() != null && other.getWhatIfForecastName().equals(this.getWhatIfForecastName()) == false) return false; if (other.getWhatIfForecastArn() == null ^ this.getWhatIfForecastArn() == null) return false; if (other.getWhatIfForecastArn() != null && other.getWhatIfForecastArn().equals(this.getWhatIfForecastArn()) == false) return false; if (other.getWhatIfAnalysisArn() == null ^ this.getWhatIfAnalysisArn() == null) return false; if (other.getWhatIfAnalysisArn() != null && other.getWhatIfAnalysisArn().equals(this.getWhatIfAnalysisArn()) == false) return false; if (other.getEstimatedTimeRemainingInMinutes() == null ^ this.getEstimatedTimeRemainingInMinutes() == null) return false; if (other.getEstimatedTimeRemainingInMinutes() != null && other.getEstimatedTimeRemainingInMinutes().equals(this.getEstimatedTimeRemainingInMinutes()) == 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.getMessage() == null ^ this.getMessage() == null) return false; if (other.getMessage() != null && other.getMessage().equals(this.getMessage()) == 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.getLastModificationTime() == null ^ this.getLastModificationTime() == null) return false; if (other.getLastModificationTime() != null && other.getLastModificationTime().equals(this.getLastModificationTime()) == false) return false; if (other.getTimeSeriesTransformations() == null ^ this.getTimeSeriesTransformations() == null) return false; if (other.getTimeSeriesTransformations() != null && other.getTimeSeriesTransformations().equals(this.getTimeSeriesTransformations()) == false) return false; if (other.getTimeSeriesReplacementsDataSource() == null ^ this.getTimeSeriesReplacementsDataSource() == null) return false; if (other.getTimeSeriesReplacementsDataSource() != null && other.getTimeSeriesReplacementsDataSource().equals(this.getTimeSeriesReplacementsDataSource()) == false) return false; if (other.getForecastTypes() == null ^ this.getForecastTypes() == null) return false; if (other.getForecastTypes() != null && other.getForecastTypes().equals(this.getForecastTypes()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getWhatIfForecastName() == null) ? 0 : getWhatIfForecastName().hashCode()); hashCode = prime * hashCode + ((getWhatIfForecastArn() == null) ? 0 : getWhatIfForecastArn().hashCode()); hashCode = prime * hashCode + ((getWhatIfAnalysisArn() == null) ? 0 : getWhatIfAnalysisArn().hashCode()); hashCode = prime * hashCode + ((getEstimatedTimeRemainingInMinutes() == null) ? 0 : getEstimatedTimeRemainingInMinutes().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getMessage() == null) ? 0 : getMessage().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getLastModificationTime() == null) ? 0 : getLastModificationTime().hashCode()); hashCode = prime * hashCode + ((getTimeSeriesTransformations() == null) ? 0 : getTimeSeriesTransformations().hashCode()); hashCode = prime * hashCode + ((getTimeSeriesReplacementsDataSource() == null) ? 0 : getTimeSeriesReplacementsDataSource().hashCode()); hashCode = prime * hashCode + ((getForecastTypes() == null) ? 0 : getForecastTypes().hashCode()); return hashCode; } @Override public DescribeWhatIfForecastResult clone() { try { return (DescribeWhatIfForecastResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy