/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* This interface declares the constants used in this API.
* Numbers in the range 0 to 256 are reserved for the specification,
* user defined events must use event codes outside that range.
*
* @since 1.6
*/
public interface XMLStreamConstants {
/**
* Indicates an event is a start element
* @see javax.xml.stream.events.StartElement
*/
/**
* Indicates an event is an end element
* @see javax.xml.stream.events.EndElement
*/
/**
* Indicates an event is a processing instruction
* @see javax.xml.stream.events.ProcessingInstruction
*/
/**
* Indicates an event is characters
* @see javax.xml.stream.events.Characters
*/
/**
* Indicates an event is a comment
* @see javax.xml.stream.events.Comment
*/
/**
* The characters are white space
* (see [XML], 2.10 "White Space Handling").
* Events are only reported as SPACE if they are ignorable white
* space. Otherwise they are reported as CHARACTERS.
* @see javax.xml.stream.events.Characters
*/
/**
* Indicates an event is a start document
* @see javax.xml.stream.events.StartDocument
*/
/**
* Indicates an event is an end document
* @see javax.xml.stream.events.EndDocument
*/
/**
* Indicates an event is an entity reference
* @see javax.xml.stream.events.EntityReference
*/
/**
* Indicates an event is an attribute
* @see javax.xml.stream.events.Attribute
*/
/**
* Indicates an event is a DTD
* @see javax.xml.stream.events.DTD
*/
/**
* Indicates an event is a CDATA section
* @see javax.xml.stream.events.Characters
*/
/**
* Indicates the event is a namespace declaration
*
* @see javax.xml.stream.events.Namespace
*/
/**
* Indicates a Notation
* @see javax.xml.stream.events.NotationDeclaration
*/
/**
* Indicates a Entity Declaration
* @see javax.xml.stream.events.NotationDeclaration
*/
}