KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > naming > directory > Attributes

javax.naming.directory
Interface Attributes

All Superinterfaces:
Cloneable, Serializable
All Known Implementing Classes:
BasicAttributes
See Also:
Top Examples, Source Code, DirContext.getAttributes(javax.naming.Name), DirContext.modifyAttributes(javax.naming.Name, int, javax.naming.directory.Attributes), DirContext.bind(javax.naming.Name, java.lang.Object, javax.naming.directory.Attributes), DirContext.rebind(javax.naming.Name, java.lang.Object, javax.naming.directory.Attributes), DirContext.createSubcontext(javax.naming.Name, javax.naming.directory.Attributes), DirContext.search(javax.naming.Name, javax.naming.directory.Attributes, java.lang.String[])

Object clone()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Attribute get(String attrID)
See Also:
remove(java.lang.String), put(java.lang.String, java.lang.Object)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


NamingEnumeration<? extends Attribute> getAll()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


NamingEnumeration<String> getIDs()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean isCaseIgnored()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Attribute put(String attrID,
              Object val)
See Also:
remove(java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Attribute put(Attribute attr)
See Also:
remove(java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Attribute remove(String attrID)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int size()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags