All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.rpc.streaming.Attributes Maven / Gradle / Ivy

There is a newer version: 4.0.4
Show newest version
/*
 * Copyright (c) 1997, 2018 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package com.sun.xml.rpc.streaming;

import javax.xml.namespace.QName;

/**
 * 

The Attributes interface is essentially a version of the * org.xml.sax.Attributes interface modified to use the JAX-RPC QName class.

* *

Although namespace declarations can appear in the attribute list, the * actual values of the local name and URI properties are * implementation-specific.

* *

Applications that need to iterate through all the attributes can use the * {@link #isNamespaceDeclaration} method to identify namespace declarations * and skip them.

* *

Also, the URI property of an attribute will never be null. The value * "" (empty string) is used for the URI of non-qualified attributes.

* * @author JAX-RPC Development Team */ public interface Attributes { /** * Return the number of attributes in the list. * */ public int getLength(); /** * Return true if the attribute at the given index is a namespace * declaration. * *

Implementations are encouraged to optimize this method by taking into * account their internal representations of attributes.

* */ public boolean isNamespaceDeclaration(int index); /** * Look up an attribute's QName by index. * */ public QName getName(int index); /** * Look up an attribute's URI by index. * */ public String getURI(int index); /** * Look up an attribute's local name by index. * */ public String getLocalName(int index); /** * Look up an attribute's prefix by index. * */ public String getPrefix(int index); /** * Look up an attribute's value by index. * */ public String getValue(int index); /** * Look up the index of an attribute by QName. * */ public int getIndex(QName name); /** * Look up the index of an attribute by URI and local name. * */ public int getIndex(String uri, String localName); /** * Look up the index of an attribute by local name. * */ public int getIndex(String localName); /** * Look up the value of an attribute by QName. * */ public String getValue(QName name); /** * Look up the value of an attribute by URI and local name. * */ public String getValue(String uri, String localName); /** * Look up the value of an attribute by local name. * */ public String getValue(String localName); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy