Example usage for Java javax.naming CompositeName fields, constructors, methods, implement or subclass
The text is from its open source code.
CompositeName(Enumeration Constructs a new composite name instance using the components specified by 'comps'. | |
CompositeName(String n) Constructs a new composite name instance by parsing the string n using the composite name syntax (left-to-right, slash separated). | |
CompositeName() Constructs a new empty composite name. |
Name | add(int posn, String comp) Adds a single component at a specified position within this composite name. |
String | get(int posn) Retrieves a component of this composite name. |
Enumeration | getAll() Retrieves the components of this composite name as an enumeration of strings. |
Name | getPrefix(int posn) Creates a composite name whose components consist of a prefix of the components in this composite name. |
Name | getSuffix(int posn) Creates a composite name whose components consist of a suffix of the components in this composite name. |
Object | remove(int posn) Deletes a component from this composite name. |
int | size() Retrieves the number of components in this composite name. |