public class IPRange
extends java.lang.Object
implements java.io.Serializable
Describes an IP range used in a security group.
| コンストラクタと説明 |
|---|
IPRange() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getCIDRIP()
The IP range in Classless Inter-Domain Routing (CIDR) notation.
|
java.lang.String |
getStatus()
The status of the IP range, for example, "authorized".
|
int |
hashCode() |
void |
setCIDRIP(java.lang.String cIDRIP)
The IP range in Classless Inter-Domain Routing (CIDR) notation.
|
void |
setStatus(java.lang.String status)
The status of the IP range, for example, "authorized".
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
IPRange |
withCIDRIP(java.lang.String cIDRIP)
The IP range in Classless Inter-Domain Routing (CIDR) notation.
|
IPRange |
withStatus(java.lang.String status)
The status of the IP range, for example, "authorized".
|
public java.lang.String getStatus()
public void setStatus(java.lang.String status)
status - The status of the IP range, for example, "authorized".public IPRange withStatus(java.lang.String status)
Returns a reference to this object so that method calls can be chained together.
status - The status of the IP range, for example, "authorized".public java.lang.String getCIDRIP()
public void setCIDRIP(java.lang.String cIDRIP)
cIDRIP - The IP range in Classless Inter-Domain Routing (CIDR) notation.public IPRange withCIDRIP(java.lang.String cIDRIP)
Returns a reference to this object so that method calls can be chained together.
cIDRIP - The IP range in Classless Inter-Domain Routing (CIDR) notation.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object