KickJava   Java API By Example, From Geeks To Geeks.

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

javax.naming.directory
Class BasicAttributes

java.lang.Object
  extended by javax.naming.directory.BasicAttributes
All Implemented Interfaces:
Serializable, Cloneable, Attributes
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[])

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


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


public BasicAttributes(String attrID,
                       Object val)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BasicAttributes(String attrID,
                       Object val,
                       boolean ignoreCase)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Object clone()
See Also:
Cloneable, Attributes
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public boolean equals(Object obj)
See Also:
hashCode()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


public NamingEnumeration<Attribute> getAll()
See Also:
Attributes
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


public int hashCode()
See Also:
equals(java.lang.Object), Object
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


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


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


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


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


public String toString()
See Also:
Object
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags