public abstract class RefAddr extends Object implements Serializable
This class represents the address of a communications end-point. It consists of a type that describes the communication mechanism and an address contents determined by an RefAddr subclass.
For example, an address type could be "BSD Printer Address", which specifies that it is an address to be used with the BSD printing protocol. Its contents could be the machine name identifying the location of the printer server that understands this protocol.
A RefAddr is contained within a Reference.
RefAddr is an abstract class. Concrete implementations of it determine its synchronization properties.
Reference
, LinkRef
, StringRefAddr
, BinaryRefAddr
, Serialized Formprotected String addrType
Contains the type of this address.
protected RefAddr(String addrType)
Constructs a new instance of RefAddr using its address type.
addrType
- A non-null string describing the type of the address.public String getType()
Retrieves the address type of this address.
public abstract Object getContent()
Retrieves the contents of this address.
public boolean equals(Object obj)
Determines whether obj is equal to this RefAddr.
obj is equal to this RefAddr all of these conditions are true
equals
in class Object
obj
- possibly null obj to check.getContent()
, getType()
public int hashCode()
Computes the hash code of this address using its address type and contents. The hash code is the sum of the hash code of the address type and the hash code of the address contents.
hashCode
in class Object
Object.hashCode()
public String toString()
Generates the string representation of this address. The string consists of the address's type and contents with labels. This representation is intended for display only and not to be parsed.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.