/* Name.java -- Name build up from different components
Copyright (C) 2000, 2001 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., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.
As a special exception, if you link this library with other files to
produce an executable, this library does not by itself cause the
resulting executable to be covered by the GNU General Public License.
This exception does not however invalidate any other reasons why the
executable file might be covered by the GNU General Public License. */
package javax.naming;
import java.util.Enumeration;
import java.io.Serializable;
/**
* Interface descriping a name build up from different components.
* The components are represented as String
s which are
* ordered from most significant to least significant. There are methods to
* get the number of components. Methods to get a particular component or group
* of components. Components can be added as String
s or
* Name
s and a component can be removed from any position in the
* Name
.
* A Name
can be compared to another Name
and it can
* be checked if a particular Name
starts or ends with the same
* components as another Name
. Finally Name
s can be
* serialized and cloned.
*
* Since Name
s can be empty (have no components) methods that
* return a Name
will never return null
.
*
* @since 1.3
* @author Anthony Green (green@redhat.com)
* @author Mark Wielaard (mark@klomp.org)
*/
public interface Name extends Cloneable, Serializable
{
/**
* Returns the number of components of this Name
.
* The returned number can be zero.
*/
public int size();
/**
* Returns true
if the number of components of this
* Name
is zero, false
otherwise.
*/
public boolean isEmpty();
/**
* Returns a non-null (but possibly empty) Enumeration
of the
* components of the Name
as String
s.
*/
public Enumeration getAll();
/**
* Gets the component at the given index.
*
* @exception ArrayIndexOutOfBoundsException if the given index is smaller
* then zero or greater then or equal to size()
.
*/
public String get(int i);
/**
* Returns the components till the given index as a Name
.
* The returned Name
can be modified without changing the
* original.
*
* @exception ArrayIndexOutOfBoundsException if the given index is smaller
* then zero or greater then or equal to size()
.
*/
public Name getPrefix(int i);
/**
* Returns the components from the given index till the end as a
* Name
.
* The returned Name
can be modified without changing the
* original.
*
* @exception ArrayIndexOutOfBoundsException if the given index is smaller
* then zero or greater then or equal to size()
.
*/
public Name getSuffix(int i);
/**
* Adds the given String
component to the end of this
* Name
. The method modifies the current Name
and
* then returns it.
*
* @exception InvalidNameException if the given String
is not a
* valid component for this Name
.
*/
public Name add(String comp) throws InvalidNameException;
/**
* Inserts the given String
component to this Name
* at the given index. The method modifies the current Name
and
* then returns it.
*
* @exception ArrayIndexOutOfBoundsException if the given index is smaller
* then zero or greater then or equal to size()
.
* @exception InvalidNameException if the given String
is not a
* valid component for this Name
.
*/
public Name add(int posn, String comp) throws InvalidNameException;
/**
* Adds all the components of the given Name
to the end of this
* Name
. The method modifies the current Name
and
* then returns it.
*
* @exception InvalidNameException if any of the given components is not a
* valid component for this Name
.
*/
public Name addAll(Name suffix) throws InvalidNameException;
/**
* Inserts all the components of the given Name
to this
* Name
at the given index. The method modifies the current
* Name
and then returns it.
*
* @exception ArrayIndexOutOfBoundsException if the given index is smaller
* then zero or greater then or equal to size()
.
* @exception InvalidNameException if any of the given components is not a
* valid component for this Name
.
*/
public Name addAll(int posn, Name n) throws InvalidNameException;
/**
* Removes the component at the given index from this Name
.
* The method modifies the current Name
and then returns it.
*
* @exception InvalidNameException if the given String
is not a
* valid component for this Name
.
*/
public Object remove(int posn) throws InvalidNameException;
/**
* Returns true
if this Name
starts with the
* components of the given Name
, false
otherwise.
*/
public boolean startsWith(Name name);
/**
* Returns true
if this Name
ends with the
* components of the given Name
, false
otherwise.
*/
public boolean endsWith(Name name);
/**
* Compares the given object to this Name
.
* Returns a negative value if the given Object
is smaller then
* this Name
, a positive value if the Object
is
* bigger, and zero if the are equal. If the Object
is not of
* a class that can be compared to the class of this Name
then
* a ClassCastException
is thrown. Note that it is not
* guaranteed that Name
s implemented in different classes can
* be compared. The definition of smaller, bigger and equal is up to the
* actual implementing class.
*/
public int compareTo(Object obj);
/**
* Returns a clone of this Name
. It will be a deep copy of
* all the components of the Name
so that changes to components
* of the components does not change the component in this Name
.
*/
public Object clone();
}