Class TransportAddress
java.lang.Object
org.elasticsearch.common.transport.TransportAddress
- All Implemented Interfaces:
Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentFragment
public final class TransportAddress extends java.lang.Object implements Writeable, org.elasticsearch.common.xcontent.ToXContentFragment
A transport address used for IP socket address (wraps
InetSocketAddress).-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields Modifier and Type Field Description static java.net.InetAddressMETA_ADDRESSA non-routeable v4 meta transport address that can be used for testing or in scenarios where targets should be marked as non-applicable from a transport perspective. -
Constructor Summary
Constructors Constructor Description TransportAddress(java.net.InetAddress address, int port)TransportAddress(java.net.InetSocketAddress address)TransportAddress(StreamInput in)Read from a stream. -
Method Summary
Modifier and Type Method Description java.net.InetSocketAddressaddress()Returns the enclosedInetSocketAddressbooleanequals(java.lang.Object o)java.lang.StringgetAddress()Returns a string representation of the enclosedInetSocketAddressintgetPort()Returns the addresses portinthashCode()java.lang.StringtoString()org.elasticsearch.common.xcontent.XContentBuildertoXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.
-
Field Details
-
META_ADDRESS
public static final java.net.InetAddress META_ADDRESSA non-routeable v4 meta transport address that can be used for testing or in scenarios where targets should be marked as non-applicable from a transport perspective.
-
-
Constructor Details
-
TransportAddress
public TransportAddress(java.net.InetAddress address, int port) -
TransportAddress
public TransportAddress(java.net.InetSocketAddress address) -
TransportAddress
Read from a stream.- Throws:
java.io.IOException
-
-
Method Details
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
getAddress
public java.lang.String getAddress()Returns a string representation of the enclosedInetSocketAddress- See Also:
NetworkAddress.format(InetAddress)
-
getPort
public int getPort()Returns the addresses port -
address
public java.net.InetSocketAddress address()Returns the enclosedInetSocketAddress -
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-
toXContent
public org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
toXContentin interfaceorg.elasticsearch.common.xcontent.ToXContent- Throws:
java.io.IOException
-