Java javax.naming CompositeName fields, constructors, methods, implement or subclass

Example usage for Java javax.naming CompositeName fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.naming CompositeName.

The text is from its open source code.

Constructor

CompositeName(Enumeration comps)
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.

Method

Nameadd(int posn, String comp)
Adds a single component at a specified position within this composite name.
Stringget(int posn)
Retrieves a component of this composite name.
EnumerationgetAll()
Retrieves the components of this composite name as an enumeration of strings.
NamegetPrefix(int posn)
Creates a composite name whose components consist of a prefix of the components in this composite name.
NamegetSuffix(int posn)
Creates a composite name whose components consist of a suffix of the components in this composite name.
Objectremove(int posn)
Deletes a component from this composite name.
intsize()
Retrieves the number of components in this composite name.