KickJava   Java API By Example, From Geeks To Geeks.

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

javax.naming.directory
Interface Attribute

All Superinterfaces:
Cloneable, Serializable
All Known Implementing Classes:
BasicAttribute
See Also:
Top Examples, Source Code

void add(int ix,
         Object attrVal)
See Also:
IllegalStateException, IndexOutOfBoundsException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


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


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


boolean contains(Object attrVal)
See Also:
BasicAttribute.equals(java.lang.Object), Object.equals(java.lang.Object)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Object get()
           throws NamingException
See Also:
NoSuchElementException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Object get(int ix)
           throws NamingException
See Also:
IndexOutOfBoundsException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


NamingEnumeration<?> getAll()
                            throws NamingException
See Also:
isOrdered()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


DirContext getAttributeDefinition()
                                  throws NamingException
See Also:
OperationNotSupportedException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


DirContext getAttributeSyntaxDefinition()
                                        throws NamingException
See Also:
OperationNotSupportedException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


boolean isOrdered()
See Also:
set(int, java.lang.Object), add(int, java.lang.Object), remove(int), get(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Object remove(int ix)
See Also:
IndexOutOfBoundsException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


static final long serialVersionUID
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Object set(int ix,
           Object attrVal)
See Also:
IllegalStateException, IndexOutOfBoundsException
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