Class DocumentBuilder
Class DomDestination
Class DynamicContext
Class DynamicError
Class EmptyEnumerator
Class ExtensionFunctionCall
Class NullDestination
Class Processor
Class QName
Class SchemaManager
Class SchemaValidator
Class Serializer
Class StaticContext
Class StaticError
Class TextWriterDestination
Class XPathCompiler
Class XPathExecutable
Class XPathSelector
Class XQueryCompiler
Class XQueryEvaluator
Class XQueryExecutable
Class XdmAnyFunctionType
Class XdmAnyItemType
Class XdmAnyNodeType
Class XdmAtomicType
Class XdmAtomicValue
Class XdmDestination
Class XdmEmptySequence
Class XdmItem
Class XdmItemType
Class XdmNode
Class XdmNodeKind
Class XdmSequenceType
Class XdmValue
Class XmlDestination
Class XsltCompiler
Class XsltExecutable
Class XsltTransformer
Enum RecoveryPolicy
Enum SchemaValidationMode
Enum TreeModel
Enum WhitespacePolicy
Enum XdmAxis
Interface IMessageListener
Interface IQueryResolver
Interface IResultDocumentHandler
Interface IXdmEnumerator
Interface IXmlLocation
Interface SchemaResolver
public class XdmValue
An value in the XDM data model. A value is a sequence of zero or more items, each item being either an atomic value or a node.
An XdmValue
is immutable.
A sequence consisting of a single item may be represented
as an instance of XdmItem
, which is a subtype of XdmValue
.
Constructor Summary | |
---|---|
XdmValue() |
Property Summary | |
---|---|
int |
Count Get the number of items in the sequence |
Method Summary | |
---|---|
XdmValue |
Append(XdmValue otherValue) Create a new XdmValue by concatenating the sequences of items in this XdmValue and another XdmValue |
static XdmValue |
Wrap(net.sf.saxon.om.ValueRepresentation value) Create an XdmValue from an underlying Saxon ValueRepresentation object. This method is provided for the benefit of applications that need to mix use of the Saxon .NET API with direct use of the underlying objects and methods offered by the Java implementation. |
ValueRepresentation |
Unwrap() Extract the underlying Saxon ValueRepresentation object from an XdmValue. This method is provided for the benefit of applications that need to mix use of the Saxon .NET API with direct use of the underlying objects and methods offered by the Java implementation. |
IList |
GetList()
Get the sequence of items in the form of an |
IEnumerator |
GetEnumerator()
Get the sequence of items in the form of an |
Constructor Detail |
---|
public XdmValue()
Property Detail |
---|
public int Count {get; }
Get the number of items in the sequence
Method Detail |
---|
public XdmValue Append(XdmValue otherValue)
Create a new XdmValue by concatenating the sequences of items in this XdmValue and another XdmValue
Neither of the input XdmValue objects is modified by this operation
Parameters:otherValue
-
public static XdmValue Wrap(net.sf.saxon.om.ValueRepresentation value)
Create an XdmValue from an underlying Saxon ValueRepresentation object. This method is provided for the benefit of applications that need to mix use of the Saxon .NET API with direct use of the underlying objects and methods offered by the Java implementation.
Parameters:value
-
public ValueRepresentation Unwrap()
Extract the underlying Saxon ValueRepresentation object from an XdmValue. This method is provided for the benefit of applications that need to mix use of the Saxon .NET API with direct use of the underlying objects and methods offered by the Java implementation.
public IList GetList()
Get the sequence of items in the form of an IList
XdmItem
public IEnumerator GetEnumerator()
Get the sequence of items in the form of an IXdmEnumerator
XdmItem