Name (Java SE 15 & JDK 15) (original) (raw)
All Superinterfaces:
[Cloneable](../../../java.base/java/lang/Cloneable.html "interface in java.lang")
, [Comparable](../../../java.base/java/lang/Comparable.html "interface in java.lang")<[Object](../../../java.base/java/lang/Object.html "class in java.lang")>
, [Serializable](../../../java.base/java/io/Serializable.html "interface in java.io")
All Known Implementing Classes:
[CompositeName](CompositeName.html "class in javax.naming")
, [CompoundName](CompoundName.html "class in javax.naming")
, [LdapName](ldap/LdapName.html "class in javax.naming.ldap")
public interface Name extends Cloneable, Serializable, Comparable<Object>
The Name
interface represents a generic name -- an ordered sequence of components. It can be a composite name (names that span multiple namespaces), or a compound name (names that are used within individual hierarchical naming systems).
There can be different implementations of Name
; for example, composite names, URLs, or namespace-specific compound names.
The components of a name are numbered. The indexes of a name with N components range from 0 up to, but not including, N. This range may be written as [0,N). The most significant component is at index 0. An empty name has no components.
None of the methods in this interface accept null as a valid value for a parameter that is a name or a name component. Likewise, methods that return a name or name component never return null.
An instance of a Name
may not be synchronized against concurrent multithreaded access if that access is not read-only.
Since:
1.3
Field Summary
Fields
Modifier and Type | Field | Description |
---|---|---|
static long | serialVersionUID | Deprecated. |
Method Summary
Modifier and Type | Method | Description |
---|---|---|
Name | add(int posn,String comp) | Adds a single component at a specified position within this name. |
Name | add(String comp) | Adds a single component to the end of this name. |
Name | addAll(int posn,Name n) | Adds the components of a name -- in order -- at a specified position within this name. |
Name | addAll(Name suffix) | Adds the components of a name -- in order -- to the end of this name. |
Object | clone() | Generates a new copy of this name. |
int | compareTo(Object obj) | Compares this name with another name for order. |
boolean | endsWith(Name n) | Determines whether this name ends with a specified suffix. |
String | get(int posn) | Retrieves a component of this name. |
Enumeration<String> | getAll() | Retrieves the components of this name as an enumeration of strings. |
Name | getPrefix(int posn) | Creates a name whose components consist of a prefix of the components of this name. |
Name | getSuffix(int posn) | Creates a name whose components consist of a suffix of the components in this name. |
boolean | isEmpty() | Determines whether this name is empty. |
Object | remove(int posn) | Removes a component from this name. |
int | size() | Returns the number of components in this name. |
boolean | startsWith(Name n) | Determines whether this name starts with a specified prefix. |
Field Details
serialVersionUID
@Deprecated static final long serialVersionUID
The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.
See Also:
Constant Field ValuesMethod Details
clone
Generates a new copy of this name. Subsequent changes to the components of this name will not affect the new copy, and vice versa.
Returns:
a copy of this name
See Also:
Object.clone()compareTo
int compareTo(Object obj)
Compares this name with another name for order. Returns a negative integer, zero, or a positive integer as this name is less than, equal to, or greater than the given name.
As withObject.equals()
, the notion of ordering for names depends on the class that implements this interface. For example, the ordering may be based on lexicographical ordering of the name components. Specific attributes of the name, such as how it treats case, may affect the ordering. In general, two names of different classes may not be compared.
Specified by:
[compareTo](../../../java.base/java/lang/Comparable.html#compareTo%28T%29)
in interface[Comparable](../../../java.base/java/lang/Comparable.html "interface in java.lang")<[Object](../../../java.base/java/lang/Object.html "class in java.lang")>
Parameters:
obj
- the non-null object to compare against.
Returns:
a negative integer, zero, or a positive integer as this name is less than, equal to, or greater than the given name
Throws:
[ClassCastException](../../../java.base/java/lang/ClassCastException.html "class in java.lang")
- if obj is not aName
of a type that may be compared with this name
See Also:
Comparable.compareTo(Object)size
int size()
Returns the number of components in this name.
Returns:
the number of components in this nameisEmpty
boolean isEmpty()
Determines whether this name is empty. An empty name is one with zero components.
Returns:
true if this name is empty, false otherwisegetAll
Retrieves the components of this name as an enumeration of strings. The effect on the enumeration of updates to this name is undefined. If the name has zero components, an empty (non-null) enumeration is returned.
Returns:
an enumeration of the components of this name, each a stringget
Retrieves a component of this name.
Parameters:
posn
- the 0-based index of the component to retrieve. Must be in the range [0,size()).
Returns:
the component at index posn
Throws:
[ArrayIndexOutOfBoundsException](../../../java.base/java/lang/ArrayIndexOutOfBoundsException.html "class in java.lang")
- if posn is outside the specified rangegetPrefix
Name getPrefix(int posn)
Creates a name whose components consist of a prefix of the components of this name. Subsequent changes to this name will not affect the name that is returned and vice versa.
Parameters:
posn
- the 0-based index of the component at which to stop. Must be in the range [0,size()].
Returns:
a name consisting of the components at indexes in the range [0,posn).
Throws:
[ArrayIndexOutOfBoundsException](../../../java.base/java/lang/ArrayIndexOutOfBoundsException.html "class in java.lang")
- if posn is outside the specified rangegetSuffix
Name getSuffix(int posn)
Creates a name whose components consist of a suffix of the components in this name. Subsequent changes to this name do not affect the name that is returned and vice versa.
Parameters:
posn
- the 0-based index of the component at which to start. Must be in the range [0,size()].
Returns:
a name consisting of the components at indexes in the range [posn,size()). If posn is equal to size(), an empty name is returned.
Throws:
[ArrayIndexOutOfBoundsException](../../../java.base/java/lang/ArrayIndexOutOfBoundsException.html "class in java.lang")
- if posn is outside the specified rangestartsWith
boolean startsWith(Name n)
Determines whether this name starts with a specified prefix. A namen
is a prefix if it is equal togetPrefix(n.size())
.
Parameters:
n
- the name to check
Returns:
true ifn
is a prefix of this name, false otherwiseendsWith
boolean endsWith(Name n)
Determines whether this name ends with a specified suffix. A namen
is a suffix if it is equal togetSuffix(size()-n.size())
.
Parameters:
n
- the name to check
Returns:
true ifn
is a suffix of this name, false otherwiseaddAll
Adds the components of a name -- in order -- to the end of this name.
Parameters:
suffix
- the components to add
Returns:
the updated name (not a new one)
Throws:
[InvalidNameException](InvalidNameException.html "class in javax.naming")
- ifsuffix
is not a valid name, or if the addition of the components would violate the syntax rules of this nameaddAll
Adds the components of a name -- in order -- at a specified position within this name. Components of this name at or after the index of the first new component are shifted up (away from 0) to accommodate the new components.
Parameters:
n
- the components to add
posn
- the index in this name at which to add the new components. Must be in the range [0,size()].
Returns:
the updated name (not a new one)
Throws:
[ArrayIndexOutOfBoundsException](../../../java.base/java/lang/ArrayIndexOutOfBoundsException.html "class in java.lang")
- if posn is outside the specified range
[InvalidNameException](InvalidNameException.html "class in javax.naming")
- ifn
is not a valid name, or if the addition of the components would violate the syntax rules of this nameadd
Adds a single component to the end of this name.
Parameters:
comp
- the component to add
Returns:
the updated name (not a new one)
Throws:
[InvalidNameException](InvalidNameException.html "class in javax.naming")
- if addingcomp
would violate the syntax rules of this nameadd
Adds a single component at a specified position within this name. Components of this name at or after the index of the new component are shifted up by one (away from index 0) to accommodate the new component.
Parameters:
comp
- the component to add
posn
- the index at which to add the new component. Must be in the range [0,size()].
Returns:
the updated name (not a new one)
Throws:
[ArrayIndexOutOfBoundsException](../../../java.base/java/lang/ArrayIndexOutOfBoundsException.html "class in java.lang")
- if posn is outside the specified range
[InvalidNameException](InvalidNameException.html "class in javax.naming")
- if addingcomp
would violate the syntax rules of this nameremove
Removes a component from this name. The component of this name at the specified position is removed. Components with indexes greater than this position are shifted down (toward index 0) by one.
Parameters:
posn
- the index of the component to remove. Must be in the range [0,size()).
Returns:
the component removed (a String)
Throws:
[ArrayIndexOutOfBoundsException](../../../java.base/java/lang/ArrayIndexOutOfBoundsException.html "class in java.lang")
- if posn is outside the specified range
[InvalidNameException](InvalidNameException.html "class in javax.naming")
- if deleting the component would violate the syntax rules of the name