javax.naming

Class CompositeName

Implemented Interfaces:
Cloneable, Comparable<T>, Name, Serializable

public class CompositeName
extends Object
implements Name, Cloneable, Serializable

Represents names that may span over several namespaces. For instance, the composite name http://www.gnu.org/software/classpath/index.html spans over three namespaces (the protocol http, the web server location (www.gnu.org) and the index.html location on the server).
See Also:
Serialized Form

Fields inherited from interface javax.naming.Name

serialVersionUID

Constructor Summary

CompositeName()
CompositeName(Enumeration comps)
CompositeName(String n)

Method Summary

Name
add(int posn, String comp)
Name
add(String comp)
Name
addAll(int posn, Name n)
Name
addAll(Name suffix)
Object
clone()
int
compareTo(Object obj)
boolean
endsWith(Name n)
boolean
equals(Object obj)
String
get(int posn)
Enumeration
getAll()
Name
getPrefix(int posn)
Name
getSuffix(int posn)
int
hashCode()
boolean
isEmpty()
Object
remove(int posn)
int
size()
boolean
startsWith(Name n)
String
toString()

Methods inherited from class java.lang.Object

clone, equals, extends Object> getClass, finalize, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Details

CompositeName

public CompositeName()

CompositeName

protected CompositeName(Enumeration comps)

CompositeName

public CompositeName(String n)
            throws InvalidNameException

Method Details

add

public Name add(int posn,
                String comp)
            throws InvalidNameException
Specified by:
add in interface Name

add

public Name add(String comp)
            throws InvalidNameException
Specified by:
add in interface Name

addAll

public Name addAll(int posn,
                   Name n)
            throws InvalidNameException
Specified by:
addAll in interface Name

addAll

public Name addAll(Name suffix)
            throws InvalidNameException
Specified by:
addAll in interface Name

clone

public Object clone()
Specified by:
clone in interface Name
Overrides:
clone in interface Object

compareTo

public int compareTo(Object obj)
Specified by:
compareTo in interface Name

endsWith

public boolean endsWith(Name n)
Specified by:
endsWith in interface Name

equals

public boolean equals(Object obj)
Overrides:
equals in interface Object

get

public String get(int posn)
Specified by:
get in interface Name

getAll

public Enumeration getAll()
Specified by:
getAll in interface Name

getPrefix

public Name getPrefix(int posn)
Specified by:
getPrefix in interface Name

getSuffix

public Name getSuffix(int posn)
Specified by:
getSuffix in interface Name

hashCode

public int hashCode()
Overrides:
hashCode in interface Object

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface Name

remove

public Object remove(int posn)
            throws InvalidNameException
Specified by:
remove in interface Name

size

public int size()
Specified by:
size in interface Name

startsWith

public boolean startsWith(Name n)
Specified by:
startsWith in interface Name

toString

public String toString()
Overrides:
toString in interface Object

CompositeName.java -- Copyright (C) 2001, 2005, 2006 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.