blob: 5fe612a2accd6abbd3961cd6d26c342f7a8a3766 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/* Copyright (C) 2000 Free Software Foundation
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package javax.naming;
import java.util.Enumeration;
import java.io.Serializable;
public interface Name extends Cloneable, Serializable
{
public Object clone();
public int compareTo(Object obj);
public int size();
public boolean isEmpty();
public Enumeration getAll();
public String get(int posn);
public Name getPrefix(int posn);
public Name getSuffix(int posn);
public boolean startsWith(Name n);
public boolean endsWith(Name n);
public Name addAll(Name suffix) throws InvalidNameException;
public Name addAll(int posn, Name n) throws InvalidNameException;
public Name add(String comp) throws InvalidNameException;
public Name add(int posn, String comp) throws InvalidNameException;
public Object remove(int posn) throws InvalidNameException;
}
|