public abstract class SearchableValue<T extends Item<?>> extends java.lang.Object implements GroundedValue<T>
Constructor and Description |
---|
SearchableValue() |
Modifier and Type | Method and Description |
---|---|
boolean |
effectiveBooleanValue()
Get the effective boolean value of this sequence
|
abstract SequenceIterator<T> |
findItems(Expression use,
SequenceIterator<? extends AtomicValue> values,
boolean convertUntypedToOther,
boolean firstOnly,
AtomicComparer comparer,
XPathContext context)
Retrieve items that match a given index value
|
int |
getLength()
Get the length of the sequence
|
java.lang.String |
getStringValue()
Get the string value of this sequence.
|
java.lang.CharSequence |
getStringValueCS()
Get the string value of this sequence.
|
T |
head()
Get the first item in the sequence.
|
T |
itemAt(int n)
Get the n'th item in the sequence (starting from 0).
|
UnfailingIterator<T> |
iterate()
Return an Iterator to iterate over the values of a sequence.
|
static <T extends Item<?>> |
makeSearchableValue(SequenceIterator<? extends T> iter) |
GroundedValue<T> |
reduce()
Reduce the sequence to its simplest form.
|
GroundedValue<T> |
subsequence(int start,
int length)
Get a subsequence of the value
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
asIterable, iterator, materialize, toShortString
makeRepeatable
public static <T extends Item<?>> SearchableValue<T> makeSearchableValue(SequenceIterator<? extends T> iter) throws XPathException
XPathException
public UnfailingIterator<T> iterate()
public T itemAt(int n)
itemAt
in interface GroundedValue<T extends Item<?>>
n
- position of the required item, counting from zero.public int getLength()
getLength
in interface GroundedValue<T extends Item<?>>
public abstract SequenceIterator<T> findItems(Expression use, SequenceIterator<? extends AtomicValue> values, boolean convertUntypedToOther, boolean firstOnly, AtomicComparer comparer, XPathContext context) throws XPathException
use
- the expression whose value is to be matchedvalues
- the set of values to be foundconvertUntypedToOther
- true if untypedAtomic values are to be converted to the
type of the other operandfirstOnly
- true if only the first matching item is requiredcomparer
- AtomicComparer used to compare values for equality (encapsulates a collation
if necessary)context
- the dynamic evaluation context @return an iterator over the items that match the specified valuesXPathException
- if an error occurspublic GroundedValue<T> subsequence(int start, int length)
subsequence
in interface GroundedValue<T extends Item<?>>
start
- the index of the first item to be included in the result, counting from zero.
A negative value is taken as zero. If the value is beyond the end of the sequence, an empty
sequence is returnedlength
- the number of items to be included in the result. Specify Integer.MAX_VALUE to
get the subsequence up to the end of the base sequence. If the value is negative, an empty sequence
is returned. If the value goes off the end of the sequence, the result returns items up to the end
of the sequencepublic boolean effectiveBooleanValue() throws XPathException
GroundedValue
effectiveBooleanValue
in interface GroundedValue<T extends Item<?>>
XPathException
- if the sequence has no effective boolean value (for example a sequence of two integers)public java.lang.String getStringValue() throws XPathException
GroundedValue
getStringValue
in interface GroundedValue<T extends Item<?>>
XPathException
- if the sequence contains items that have no string value (for example, function items)public java.lang.CharSequence getStringValueCS() throws XPathException
GroundedValue
getStringValueCS
in interface GroundedValue<T extends Item<?>>
XPathException
- if the sequence contains items that have no string value (for example, function items)public T head()
public GroundedValue<T> reduce()
reduce
in interface GroundedValue<T extends Item<?>>
Copyright (c) 2004-2020 Saxonica Limited. All rights reserved.