Java javax.naming.ldap Rdn fields, constructors, methods, implement or subclass

Example usage for Java javax.naming.ldap Rdn fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.naming.ldap Rdn.

The text is from its open source code.

Constructor

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.

Method

booleanequals(Object obj)
Compares the specified Object with this Rdn for equality.
StringescapeValue(Object val)
Given the value of an attribute, returns a string escaped according to the rules specified in RFC 2253.
StringgetType()
Retrieves one of this Rdn's type.
ObjectgetValue()
Retrieves one of this Rdn's value.
intsize()
Retrieves the number of attribute type/value pairs in this Rdn.
AttributestoAttributes()
Retrieves the javax.naming.directory.Attributes Attributes view of the type/value mappings contained in this Rdn.
StringtoString()
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 .
ObjectunescapeValue(String val)
Given an attribute value string formatted according to the rules specified in RFC 2253, returns the unformatted value.