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

com.amazonaws.services.ec2.model.AdditionalDetail Maven / Gradle / Ivy

/*
 * Copyright 2017-2022 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.ec2.model;

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

/**
 * 

* Describes an additional detail for a path analysis. *

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

* The information type. *

*/ private String additionalDetailType; /** *

* The path component. *

*/ private AnalysisComponent component; /** *

* The information type. *

* * @param additionalDetailType * The information type. */ public void setAdditionalDetailType(String additionalDetailType) { this.additionalDetailType = additionalDetailType; } /** *

* The information type. *

* * @return The information type. */ public String getAdditionalDetailType() { return this.additionalDetailType; } /** *

* The information type. *

* * @param additionalDetailType * The information type. * @return Returns a reference to this object so that method calls can be chained together. */ public AdditionalDetail withAdditionalDetailType(String additionalDetailType) { setAdditionalDetailType(additionalDetailType); return this; } /** *

* The path component. *

* * @param component * The path component. */ public void setComponent(AnalysisComponent component) { this.component = component; } /** *

* The path component. *

* * @return The path component. */ public AnalysisComponent getComponent() { return this.component; } /** *

* The path component. *

* * @param component * The path component. * @return Returns a reference to this object so that method calls can be chained together. */ public AdditionalDetail withComponent(AnalysisComponent component) { setComponent(component); 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 (getAdditionalDetailType() != null) sb.append("AdditionalDetailType: ").append(getAdditionalDetailType()).append(","); if (getComponent() != null) sb.append("Component: ").append(getComponent()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AdditionalDetail == false) return false; AdditionalDetail other = (AdditionalDetail) obj; if (other.getAdditionalDetailType() == null ^ this.getAdditionalDetailType() == null) return false; if (other.getAdditionalDetailType() != null && other.getAdditionalDetailType().equals(this.getAdditionalDetailType()) == false) return false; if (other.getComponent() == null ^ this.getComponent() == null) return false; if (other.getComponent() != null && other.getComponent().equals(this.getComponent()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAdditionalDetailType() == null) ? 0 : getAdditionalDetailType().hashCode()); hashCode = prime * hashCode + ((getComponent() == null) ? 0 : getComponent().hashCode()); return hashCode; } @Override public AdditionalDetail clone() { try { return (AdditionalDetail) 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