Uses of Class
org.ldaptive.dn.RDn

Packages that use RDn
Package
Description
 
  • Uses of RDn in org.ldaptive.dn

    Fields in org.ldaptive.dn with type parameters of type RDn
    Modifier and Type
    Field
    Description
    private final List<RDn>
    RDN components.
    Methods in org.ldaptive.dn that return RDn
    Modifier and Type
    Method
    Description
    Dn.getRDn()
    Returns the first RDN in this DN.
    DefaultRDnNormalizer.normalize(RDn rdn)
     
    RDnNormalizer.normalize(RDn rdn)
    Normalize the name value pairs in the supplied RDN.
    Methods in org.ldaptive.dn that return types with arguments of type RDn
    Modifier and Type
    Method
    Description
    Dn.getRDns()
    Returns the RDNs in this DN.
    DefaultDnParser.parse(String dn)
    Parses the supplied DN into a list of RDNs.
    DnParser.parse(String dn)
    Parses the supplied DN into a list of RDNs.
    Methods in org.ldaptive.dn with parameters of type RDn
    Modifier and Type
    Method
    Description
    void
    Dn.add(int index, RDn rdn)
    Adds the supplied RDN at the supplied index.
    void
    Dn.add(RDn rdn)
    Adds the supplied RDN to the end of this DN.
    Dn.Builder.add(RDn rdn)
     
    boolean
    RDn.isSame(RDn rdn)
    Returns whether the normalized format of the supplied RDN equals the normalized format of this RDN.
    boolean
    RDn.isSame(RDn rdn, RDnNormalizer normalizer)
    Returns whether the normalized format of the supplied RDN equals the normalized format of this RDN.
    DefaultRDnNormalizer.normalize(RDn rdn)
     
    RDnNormalizer.normalize(RDn rdn)
    Normalize the name value pairs in the supplied RDN.
    Constructors in org.ldaptive.dn with parameters of type RDn
    Modifier
    Constructor
    Description
     
    Dn(RDn... rdn)
    Creates a new DN with the supplied RDNs.
    Constructor parameters in org.ldaptive.dn with type arguments of type RDn
    Modifier
    Constructor
    Description
     
    Dn(List<RDn> rdns)
    Creates a new DN with the supplied RDNs.