Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
javax.naming.Name

Uses of Name in javax.naming
 

Classes in javax.naming that implement Name
 class CompositeName
           
 class CompoundName
           
 

Fields in javax.naming declared as Name
protected  Name NamingException.resolvedName
          If the exception was caused while resolving a Name then this field contains that part of the name that could be resolved.
protected  Name NamingException.remainingName
          If the exception was caused while resolving a Name then this field contains that part of the name that could not be resolved.
protected  Name LinkException.linkResolvedName
           
protected  Name LinkException.linkRemainingName
           
protected  Name CannotProceedException.remainingNewName
           
protected  Name CannotProceedException.altName
           
 

Methods in javax.naming that return Name
 Name Context.composeName(Name name, Name prefix)
           
 Name NamingException.getResolvedName()
          Gets the part of the name that could be resolved before this exception happend.
 Name NamingException.getRemainingName()
          Gets the part of the name that could not be resolved before this exception happend.
 Name NameParser.parse(java.lang.String name)
           
 Name Name.getPrefix(int i)
          Returns the components till the given index as a Name.
 Name Name.getSuffix(int i)
          Returns the components from the given index till the end as a Name.
 Name Name.add(java.lang.String comp)
          Adds the given String component to the end of this Name.
 Name Name.add(int posn, java.lang.String comp)
          Inserts the given String component to this Name at the given index.
 Name Name.addAll(Name suffix)
          Adds all the components of the given Name to the end of this Name.
 Name Name.addAll(int posn, Name n)
          Inserts all the components of the given Name to this Name at the given index.
 Name LinkException.getLinkResolvedName()
           
 Name LinkException.getLinkRemainingName()
           
 Name InitialContext.composeName(Name name, Name prefix)
           
 Name CompoundName.add(int posn, java.lang.String comp)
           
 Name CompoundName.add(java.lang.String comp)
           
 Name CompoundName.addAll(int posn, Name n)
           
 Name CompoundName.addAll(Name suffix)
           
 Name CompoundName.getPrefix(int posn)
           
 Name CompoundName.getSuffix(int posn)
           
 Name CompositeName.add(int posn, java.lang.String comp)
           
 Name CompositeName.add(java.lang.String comp)
           
 Name CompositeName.addAll(int posn, Name n)
           
 Name CompositeName.addAll(Name suffix)
           
 Name CompositeName.getPrefix(int posn)
           
 Name CompositeName.getSuffix(int posn)
           
 Name CannotProceedException.getRemainingNewName()
           
 Name CannotProceedException.getAltName()
           
 

Methods in javax.naming with parameters of type Name
 void Context.bind(Name name, java.lang.Object obj)
           
 java.lang.Object Context.lookup(Name name)
           
 void Context.rebind(Name name, java.lang.Object obj)
           
 void Context.unbind(Name name)
           
 void Context.rename(Name oldName, Name newName)
           
 NamingEnumeration Context.list(Name name)
           
 NamingEnumeration Context.listBindings(Name name)
           
 void Context.destroySubcontext(Name name)
           
 Context Context.createSubcontext(Name name)
           
 java.lang.Object Context.lookupLink(Name name)
           
 NameParser Context.getNameParser(Name name)
           
 Name Context.composeName(Name name, Name prefix)
           
 void NamingException.setResolvedName(Name name)
          Sets the part of the name that could be resolved before this exception happend.
 void NamingException.setRemainingName(Name name)
          Sets the part of the name that could be resolved before this exception happend.
 void NamingException.appendRemainingName(Name name)
          Adds the given Name to the remainingName field.
 Name Name.addAll(Name suffix)
          Adds all the components of the given Name to the end of this Name.
 Name Name.addAll(int posn, Name n)
          Inserts all the components of the given Name to this Name at the given index.
 boolean Name.startsWith(Name name)
          Returns true if this Name starts with the components of the given Name, false otherwise.
 boolean Name.endsWith(Name name)
          Returns true if this Name ends with the components of the given Name, false otherwise.
 void LinkException.setLinkResolvedName(Name name)
           
 void LinkException.setLinkRemainingName(Name name)
           
protected  Context InitialContext.getURLOrDefaultInitCtx(Name name)
           
 void InitialContext.bind(Name name, java.lang.Object obj)
           
 java.lang.Object InitialContext.lookup(Name name)
           
 void InitialContext.rebind(Name name, java.lang.Object obj)
           
 void InitialContext.unbind(Name name)
           
 void InitialContext.rename(Name oldName, Name newName)
           
 NamingEnumeration InitialContext.list(Name name)
           
 NamingEnumeration InitialContext.listBindings(Name name)
           
 void InitialContext.destroySubcontext(Name name)
           
 Context InitialContext.createSubcontext(Name name)
           
 java.lang.Object InitialContext.lookupLink(Name name)
           
 NameParser InitialContext.getNameParser(Name name)
           
 Name InitialContext.composeName(Name name, Name prefix)
           
 Name CompoundName.addAll(int posn, Name n)
           
 Name CompoundName.addAll(Name suffix)
           
 boolean CompoundName.endsWith(Name n)
           
 boolean CompoundName.startsWith(Name n)
           
 Name CompositeName.addAll(int posn, Name n)
           
 Name CompositeName.addAll(Name suffix)
           
 boolean CompositeName.endsWith(Name n)
           
 boolean CompositeName.startsWith(Name n)
           
 void CannotProceedException.setRemainingNewName(Name newName)
           
 void CannotProceedException.setAltName(Name altName)
           
 

Constructors in javax.naming with parameters of type Name
LinkRef(Name name)