
com.github.fluentxml4j.query.SelectMultipleFromNode Maven / Gradle / Ivy
package com.github.fluentxml4j.query;
import org.w3c.dom.NodeList;
import java.util.List;
import java.util.stream.Stream;
public interface SelectMultipleFromNode extends Iterable
{
/**
* @deprecated SelectMultipleFromNode already is an instance of {@link Iterable}.
* @return Iterable instance of result.
*/
@Deprecated
Iterable iterate();
Stream asStream();
List asList();
NodeList asNodeList();
int count();
boolean empty();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy