Example usage for Java javax.naming.ldap Rdn fields, constructors, methods, implement or subclass
The text is from its open source code.
Rdn(Attributes attrSet) Constructs an Rdn from the given attribute set. | |
Rdn(String rdnString) Constructs an Rdn from the given string. | |
Rdn(Rdn rdn) Constructs an Rdn from the given rdn . | |
Rdn(String type, Object value) Constructs an Rdn from the given attribute type and value. |
boolean | equals(Object obj) Compares the specified Object with this Rdn for equality. |
String | escapeValue(Object val) Given the value of an attribute, returns a string escaped according to the rules specified in RFC 2253. |
String | getType() Retrieves one of this Rdn's type. |
Object | getValue() Retrieves one of this Rdn's value. |
int | size() Retrieves the number of attribute type/value pairs in this Rdn. |
Attributes | toAttributes() Retrieves the javax.naming.directory.Attributes Attributes view of the type/value mappings contained in this Rdn. |
String | toString() Returns this Rdn as a string represented in a format defined by RFC 2253 and described in the class description for javax.naming.ldap.LdapName LdapName . |
Object | unescapeValue(String val) Given an attribute value string formatted according to the rules specified in RFC 2253, returns the unformatted value. |