com.amazonaws.services.ec2.model.NetworkInfo Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 Show documentation
/*
* 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.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Describes the networking features of the instance type.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class NetworkInfo implements Serializable, Cloneable {
/**
*
* The network performance.
*
*/
private String networkPerformance;
/**
*
* The maximum number of network interfaces for the instance type.
*
*/
private Integer maximumNetworkInterfaces;
/**
*
* The maximum number of physical network cards that can be allocated to the instance.
*
*/
private Integer maximumNetworkCards;
/**
*
* The index of the default network card, starting at 0.
*
*/
private Integer defaultNetworkCardIndex;
/**
*
* Describes the network cards for the instance type.
*
*/
private com.amazonaws.internal.SdkInternalList networkCards;
/**
*
* The maximum number of IPv4 addresses per network interface.
*
*/
private Integer ipv4AddressesPerInterface;
/**
*
* The maximum number of IPv6 addresses per network interface.
*
*/
private Integer ipv6AddressesPerInterface;
/**
*
* Indicates whether IPv6 is supported.
*
*/
private Boolean ipv6Supported;
/**
*
* Indicates whether Elastic Network Adapter (ENA) is supported.
*
*/
private String enaSupport;
/**
*
* Indicates whether Elastic Fabric Adapter (EFA) is supported.
*
*/
private Boolean efaSupported;
/**
*
* Describes the Elastic Fabric Adapters for the instance type.
*
*/
private EfaInfo efaInfo;
/**
*
* Indicates whether the instance type automatically encrypts in-transit traffic between instances.
*
*/
private Boolean encryptionInTransitSupported;
/**
*
* Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable Reliable
* Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network
* traffic between EC2 instances.
*
*/
private Boolean enaSrdSupported;
/**
*
* The network performance.
*
*
* @param networkPerformance
* The network performance.
*/
public void setNetworkPerformance(String networkPerformance) {
this.networkPerformance = networkPerformance;
}
/**
*
* The network performance.
*
*
* @return The network performance.
*/
public String getNetworkPerformance() {
return this.networkPerformance;
}
/**
*
* The network performance.
*
*
* @param networkPerformance
* The network performance.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withNetworkPerformance(String networkPerformance) {
setNetworkPerformance(networkPerformance);
return this;
}
/**
*
* The maximum number of network interfaces for the instance type.
*
*
* @param maximumNetworkInterfaces
* The maximum number of network interfaces for the instance type.
*/
public void setMaximumNetworkInterfaces(Integer maximumNetworkInterfaces) {
this.maximumNetworkInterfaces = maximumNetworkInterfaces;
}
/**
*
* The maximum number of network interfaces for the instance type.
*
*
* @return The maximum number of network interfaces for the instance type.
*/
public Integer getMaximumNetworkInterfaces() {
return this.maximumNetworkInterfaces;
}
/**
*
* The maximum number of network interfaces for the instance type.
*
*
* @param maximumNetworkInterfaces
* The maximum number of network interfaces for the instance type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withMaximumNetworkInterfaces(Integer maximumNetworkInterfaces) {
setMaximumNetworkInterfaces(maximumNetworkInterfaces);
return this;
}
/**
*
* The maximum number of physical network cards that can be allocated to the instance.
*
*
* @param maximumNetworkCards
* The maximum number of physical network cards that can be allocated to the instance.
*/
public void setMaximumNetworkCards(Integer maximumNetworkCards) {
this.maximumNetworkCards = maximumNetworkCards;
}
/**
*
* The maximum number of physical network cards that can be allocated to the instance.
*
*
* @return The maximum number of physical network cards that can be allocated to the instance.
*/
public Integer getMaximumNetworkCards() {
return this.maximumNetworkCards;
}
/**
*
* The maximum number of physical network cards that can be allocated to the instance.
*
*
* @param maximumNetworkCards
* The maximum number of physical network cards that can be allocated to the instance.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withMaximumNetworkCards(Integer maximumNetworkCards) {
setMaximumNetworkCards(maximumNetworkCards);
return this;
}
/**
*
* The index of the default network card, starting at 0.
*
*
* @param defaultNetworkCardIndex
* The index of the default network card, starting at 0.
*/
public void setDefaultNetworkCardIndex(Integer defaultNetworkCardIndex) {
this.defaultNetworkCardIndex = defaultNetworkCardIndex;
}
/**
*
* The index of the default network card, starting at 0.
*
*
* @return The index of the default network card, starting at 0.
*/
public Integer getDefaultNetworkCardIndex() {
return this.defaultNetworkCardIndex;
}
/**
*
* The index of the default network card, starting at 0.
*
*
* @param defaultNetworkCardIndex
* The index of the default network card, starting at 0.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withDefaultNetworkCardIndex(Integer defaultNetworkCardIndex) {
setDefaultNetworkCardIndex(defaultNetworkCardIndex);
return this;
}
/**
*
* Describes the network cards for the instance type.
*
*
* @return Describes the network cards for the instance type.
*/
public java.util.List getNetworkCards() {
if (networkCards == null) {
networkCards = new com.amazonaws.internal.SdkInternalList();
}
return networkCards;
}
/**
*
* Describes the network cards for the instance type.
*
*
* @param networkCards
* Describes the network cards for the instance type.
*/
public void setNetworkCards(java.util.Collection networkCards) {
if (networkCards == null) {
this.networkCards = null;
return;
}
this.networkCards = new com.amazonaws.internal.SdkInternalList(networkCards);
}
/**
*
* Describes the network cards for the instance type.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setNetworkCards(java.util.Collection)} or {@link #withNetworkCards(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param networkCards
* Describes the network cards for the instance type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withNetworkCards(NetworkCardInfo... networkCards) {
if (this.networkCards == null) {
setNetworkCards(new com.amazonaws.internal.SdkInternalList(networkCards.length));
}
for (NetworkCardInfo ele : networkCards) {
this.networkCards.add(ele);
}
return this;
}
/**
*
* Describes the network cards for the instance type.
*
*
* @param networkCards
* Describes the network cards for the instance type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withNetworkCards(java.util.Collection networkCards) {
setNetworkCards(networkCards);
return this;
}
/**
*
* The maximum number of IPv4 addresses per network interface.
*
*
* @param ipv4AddressesPerInterface
* The maximum number of IPv4 addresses per network interface.
*/
public void setIpv4AddressesPerInterface(Integer ipv4AddressesPerInterface) {
this.ipv4AddressesPerInterface = ipv4AddressesPerInterface;
}
/**
*
* The maximum number of IPv4 addresses per network interface.
*
*
* @return The maximum number of IPv4 addresses per network interface.
*/
public Integer getIpv4AddressesPerInterface() {
return this.ipv4AddressesPerInterface;
}
/**
*
* The maximum number of IPv4 addresses per network interface.
*
*
* @param ipv4AddressesPerInterface
* The maximum number of IPv4 addresses per network interface.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withIpv4AddressesPerInterface(Integer ipv4AddressesPerInterface) {
setIpv4AddressesPerInterface(ipv4AddressesPerInterface);
return this;
}
/**
*
* The maximum number of IPv6 addresses per network interface.
*
*
* @param ipv6AddressesPerInterface
* The maximum number of IPv6 addresses per network interface.
*/
public void setIpv6AddressesPerInterface(Integer ipv6AddressesPerInterface) {
this.ipv6AddressesPerInterface = ipv6AddressesPerInterface;
}
/**
*
* The maximum number of IPv6 addresses per network interface.
*
*
* @return The maximum number of IPv6 addresses per network interface.
*/
public Integer getIpv6AddressesPerInterface() {
return this.ipv6AddressesPerInterface;
}
/**
*
* The maximum number of IPv6 addresses per network interface.
*
*
* @param ipv6AddressesPerInterface
* The maximum number of IPv6 addresses per network interface.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withIpv6AddressesPerInterface(Integer ipv6AddressesPerInterface) {
setIpv6AddressesPerInterface(ipv6AddressesPerInterface);
return this;
}
/**
*
* Indicates whether IPv6 is supported.
*
*
* @param ipv6Supported
* Indicates whether IPv6 is supported.
*/
public void setIpv6Supported(Boolean ipv6Supported) {
this.ipv6Supported = ipv6Supported;
}
/**
*
* Indicates whether IPv6 is supported.
*
*
* @return Indicates whether IPv6 is supported.
*/
public Boolean getIpv6Supported() {
return this.ipv6Supported;
}
/**
*
* Indicates whether IPv6 is supported.
*
*
* @param ipv6Supported
* Indicates whether IPv6 is supported.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withIpv6Supported(Boolean ipv6Supported) {
setIpv6Supported(ipv6Supported);
return this;
}
/**
*
* Indicates whether IPv6 is supported.
*
*
* @return Indicates whether IPv6 is supported.
*/
public Boolean isIpv6Supported() {
return this.ipv6Supported;
}
/**
*
* Indicates whether Elastic Network Adapter (ENA) is supported.
*
*
* @param enaSupport
* Indicates whether Elastic Network Adapter (ENA) is supported.
* @see EnaSupport
*/
public void setEnaSupport(String enaSupport) {
this.enaSupport = enaSupport;
}
/**
*
* Indicates whether Elastic Network Adapter (ENA) is supported.
*
*
* @return Indicates whether Elastic Network Adapter (ENA) is supported.
* @see EnaSupport
*/
public String getEnaSupport() {
return this.enaSupport;
}
/**
*
* Indicates whether Elastic Network Adapter (ENA) is supported.
*
*
* @param enaSupport
* Indicates whether Elastic Network Adapter (ENA) is supported.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EnaSupport
*/
public NetworkInfo withEnaSupport(String enaSupport) {
setEnaSupport(enaSupport);
return this;
}
/**
*
* Indicates whether Elastic Network Adapter (ENA) is supported.
*
*
* @param enaSupport
* Indicates whether Elastic Network Adapter (ENA) is supported.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EnaSupport
*/
public NetworkInfo withEnaSupport(EnaSupport enaSupport) {
this.enaSupport = enaSupport.toString();
return this;
}
/**
*
* Indicates whether Elastic Fabric Adapter (EFA) is supported.
*
*
* @param efaSupported
* Indicates whether Elastic Fabric Adapter (EFA) is supported.
*/
public void setEfaSupported(Boolean efaSupported) {
this.efaSupported = efaSupported;
}
/**
*
* Indicates whether Elastic Fabric Adapter (EFA) is supported.
*
*
* @return Indicates whether Elastic Fabric Adapter (EFA) is supported.
*/
public Boolean getEfaSupported() {
return this.efaSupported;
}
/**
*
* Indicates whether Elastic Fabric Adapter (EFA) is supported.
*
*
* @param efaSupported
* Indicates whether Elastic Fabric Adapter (EFA) is supported.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withEfaSupported(Boolean efaSupported) {
setEfaSupported(efaSupported);
return this;
}
/**
*
* Indicates whether Elastic Fabric Adapter (EFA) is supported.
*
*
* @return Indicates whether Elastic Fabric Adapter (EFA) is supported.
*/
public Boolean isEfaSupported() {
return this.efaSupported;
}
/**
*
* Describes the Elastic Fabric Adapters for the instance type.
*
*
* @param efaInfo
* Describes the Elastic Fabric Adapters for the instance type.
*/
public void setEfaInfo(EfaInfo efaInfo) {
this.efaInfo = efaInfo;
}
/**
*
* Describes the Elastic Fabric Adapters for the instance type.
*
*
* @return Describes the Elastic Fabric Adapters for the instance type.
*/
public EfaInfo getEfaInfo() {
return this.efaInfo;
}
/**
*
* Describes the Elastic Fabric Adapters for the instance type.
*
*
* @param efaInfo
* Describes the Elastic Fabric Adapters for the instance type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withEfaInfo(EfaInfo efaInfo) {
setEfaInfo(efaInfo);
return this;
}
/**
*
* Indicates whether the instance type automatically encrypts in-transit traffic between instances.
*
*
* @param encryptionInTransitSupported
* Indicates whether the instance type automatically encrypts in-transit traffic between instances.
*/
public void setEncryptionInTransitSupported(Boolean encryptionInTransitSupported) {
this.encryptionInTransitSupported = encryptionInTransitSupported;
}
/**
*
* Indicates whether the instance type automatically encrypts in-transit traffic between instances.
*
*
* @return Indicates whether the instance type automatically encrypts in-transit traffic between instances.
*/
public Boolean getEncryptionInTransitSupported() {
return this.encryptionInTransitSupported;
}
/**
*
* Indicates whether the instance type automatically encrypts in-transit traffic between instances.
*
*
* @param encryptionInTransitSupported
* Indicates whether the instance type automatically encrypts in-transit traffic between instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withEncryptionInTransitSupported(Boolean encryptionInTransitSupported) {
setEncryptionInTransitSupported(encryptionInTransitSupported);
return this;
}
/**
*
* Indicates whether the instance type automatically encrypts in-transit traffic between instances.
*
*
* @return Indicates whether the instance type automatically encrypts in-transit traffic between instances.
*/
public Boolean isEncryptionInTransitSupported() {
return this.encryptionInTransitSupported;
}
/**
*
* Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable Reliable
* Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network
* traffic between EC2 instances.
*
*
* @param enaSrdSupported
* Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable
* Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail
* latency of network traffic between EC2 instances.
*/
public void setEnaSrdSupported(Boolean enaSrdSupported) {
this.enaSrdSupported = enaSrdSupported;
}
/**
*
* Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable Reliable
* Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network
* traffic between EC2 instances.
*
*
* @return Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable
* Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail
* latency of network traffic between EC2 instances.
*/
public Boolean getEnaSrdSupported() {
return this.enaSrdSupported;
}
/**
*
* Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable Reliable
* Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network
* traffic between EC2 instances.
*
*
* @param enaSrdSupported
* Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable
* Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail
* latency of network traffic between EC2 instances.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NetworkInfo withEnaSrdSupported(Boolean enaSrdSupported) {
setEnaSrdSupported(enaSrdSupported);
return this;
}
/**
*
* Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable Reliable
* Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network
* traffic between EC2 instances.
*
*
* @return Indicates whether the instance type supports ENA Express. ENA Express uses Amazon Web Services Scalable
* Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail
* latency of network traffic between EC2 instances.
*/
public Boolean isEnaSrdSupported() {
return this.enaSrdSupported;
}
/**
* 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 (getNetworkPerformance() != null)
sb.append("NetworkPerformance: ").append(getNetworkPerformance()).append(",");
if (getMaximumNetworkInterfaces() != null)
sb.append("MaximumNetworkInterfaces: ").append(getMaximumNetworkInterfaces()).append(",");
if (getMaximumNetworkCards() != null)
sb.append("MaximumNetworkCards: ").append(getMaximumNetworkCards()).append(",");
if (getDefaultNetworkCardIndex() != null)
sb.append("DefaultNetworkCardIndex: ").append(getDefaultNetworkCardIndex()).append(",");
if (getNetworkCards() != null)
sb.append("NetworkCards: ").append(getNetworkCards()).append(",");
if (getIpv4AddressesPerInterface() != null)
sb.append("Ipv4AddressesPerInterface: ").append(getIpv4AddressesPerInterface()).append(",");
if (getIpv6AddressesPerInterface() != null)
sb.append("Ipv6AddressesPerInterface: ").append(getIpv6AddressesPerInterface()).append(",");
if (getIpv6Supported() != null)
sb.append("Ipv6Supported: ").append(getIpv6Supported()).append(",");
if (getEnaSupport() != null)
sb.append("EnaSupport: ").append(getEnaSupport()).append(",");
if (getEfaSupported() != null)
sb.append("EfaSupported: ").append(getEfaSupported()).append(",");
if (getEfaInfo() != null)
sb.append("EfaInfo: ").append(getEfaInfo()).append(",");
if (getEncryptionInTransitSupported() != null)
sb.append("EncryptionInTransitSupported: ").append(getEncryptionInTransitSupported()).append(",");
if (getEnaSrdSupported() != null)
sb.append("EnaSrdSupported: ").append(getEnaSrdSupported());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof NetworkInfo == false)
return false;
NetworkInfo other = (NetworkInfo) obj;
if (other.getNetworkPerformance() == null ^ this.getNetworkPerformance() == null)
return false;
if (other.getNetworkPerformance() != null && other.getNetworkPerformance().equals(this.getNetworkPerformance()) == false)
return false;
if (other.getMaximumNetworkInterfaces() == null ^ this.getMaximumNetworkInterfaces() == null)
return false;
if (other.getMaximumNetworkInterfaces() != null && other.getMaximumNetworkInterfaces().equals(this.getMaximumNetworkInterfaces()) == false)
return false;
if (other.getMaximumNetworkCards() == null ^ this.getMaximumNetworkCards() == null)
return false;
if (other.getMaximumNetworkCards() != null && other.getMaximumNetworkCards().equals(this.getMaximumNetworkCards()) == false)
return false;
if (other.getDefaultNetworkCardIndex() == null ^ this.getDefaultNetworkCardIndex() == null)
return false;
if (other.getDefaultNetworkCardIndex() != null && other.getDefaultNetworkCardIndex().equals(this.getDefaultNetworkCardIndex()) == false)
return false;
if (other.getNetworkCards() == null ^ this.getNetworkCards() == null)
return false;
if (other.getNetworkCards() != null && other.getNetworkCards().equals(this.getNetworkCards()) == false)
return false;
if (other.getIpv4AddressesPerInterface() == null ^ this.getIpv4AddressesPerInterface() == null)
return false;
if (other.getIpv4AddressesPerInterface() != null && other.getIpv4AddressesPerInterface().equals(this.getIpv4AddressesPerInterface()) == false)
return false;
if (other.getIpv6AddressesPerInterface() == null ^ this.getIpv6AddressesPerInterface() == null)
return false;
if (other.getIpv6AddressesPerInterface() != null && other.getIpv6AddressesPerInterface().equals(this.getIpv6AddressesPerInterface()) == false)
return false;
if (other.getIpv6Supported() == null ^ this.getIpv6Supported() == null)
return false;
if (other.getIpv6Supported() != null && other.getIpv6Supported().equals(this.getIpv6Supported()) == false)
return false;
if (other.getEnaSupport() == null ^ this.getEnaSupport() == null)
return false;
if (other.getEnaSupport() != null && other.getEnaSupport().equals(this.getEnaSupport()) == false)
return false;
if (other.getEfaSupported() == null ^ this.getEfaSupported() == null)
return false;
if (other.getEfaSupported() != null && other.getEfaSupported().equals(this.getEfaSupported()) == false)
return false;
if (other.getEfaInfo() == null ^ this.getEfaInfo() == null)
return false;
if (other.getEfaInfo() != null && other.getEfaInfo().equals(this.getEfaInfo()) == false)
return false;
if (other.getEncryptionInTransitSupported() == null ^ this.getEncryptionInTransitSupported() == null)
return false;
if (other.getEncryptionInTransitSupported() != null && other.getEncryptionInTransitSupported().equals(this.getEncryptionInTransitSupported()) == false)
return false;
if (other.getEnaSrdSupported() == null ^ this.getEnaSrdSupported() == null)
return false;
if (other.getEnaSrdSupported() != null && other.getEnaSrdSupported().equals(this.getEnaSrdSupported()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNetworkPerformance() == null) ? 0 : getNetworkPerformance().hashCode());
hashCode = prime * hashCode + ((getMaximumNetworkInterfaces() == null) ? 0 : getMaximumNetworkInterfaces().hashCode());
hashCode = prime * hashCode + ((getMaximumNetworkCards() == null) ? 0 : getMaximumNetworkCards().hashCode());
hashCode = prime * hashCode + ((getDefaultNetworkCardIndex() == null) ? 0 : getDefaultNetworkCardIndex().hashCode());
hashCode = prime * hashCode + ((getNetworkCards() == null) ? 0 : getNetworkCards().hashCode());
hashCode = prime * hashCode + ((getIpv4AddressesPerInterface() == null) ? 0 : getIpv4AddressesPerInterface().hashCode());
hashCode = prime * hashCode + ((getIpv6AddressesPerInterface() == null) ? 0 : getIpv6AddressesPerInterface().hashCode());
hashCode = prime * hashCode + ((getIpv6Supported() == null) ? 0 : getIpv6Supported().hashCode());
hashCode = prime * hashCode + ((getEnaSupport() == null) ? 0 : getEnaSupport().hashCode());
hashCode = prime * hashCode + ((getEfaSupported() == null) ? 0 : getEfaSupported().hashCode());
hashCode = prime * hashCode + ((getEfaInfo() == null) ? 0 : getEfaInfo().hashCode());
hashCode = prime * hashCode + ((getEncryptionInTransitSupported() == null) ? 0 : getEncryptionInTransitSupported().hashCode());
hashCode = prime * hashCode + ((getEnaSrdSupported() == null) ? 0 : getEnaSrdSupported().hashCode());
return hashCode;
}
@Override
public NetworkInfo clone() {
try {
return (NetworkInfo) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}