blob: 8e86b4b7d39e3725fcfdbdbbd011373e0a49094d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Jesper Moller, and others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Jesper Moller - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xml.xpath2.api;
import org.eclipse.wst.xml.xpath2.api.typesystem.ItemType;
/**
* An item in the XPath2 data model
*
* @since 2.0
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface Item {
/**
* @return A description of the item type.
*/
ItemType getItemType();
/**
* @return The "Raw" Java object, e.g. org.w3.Node for a node,
* java.util.String for strings, etc.
*/
Object getNativeValue();
String getStringValue();
}