Interface SelectorPath
-
- All Superinterfaces:
Collection<SelectorStep>
,Iterable<SelectorStep>
,List<SelectorStep>
- All Known Implementing Classes:
AbstractSelectorPath
,IndexedSelectorPath
,JaxenPatternSelectorPath
,SimpleSelectorPath
public interface SelectorPath extends List<SelectorStep>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionEvaluator
getConditionEvaluator()
Properties
getNamespaces()
String
getSelector()
void
setConditionEvaluator(ExpressionEvaluator expressionEvaluator)
void
setNamespaces(Properties namespaces)
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Method Detail
-
getSelector
String getSelector()
-
setConditionEvaluator
void setConditionEvaluator(ExpressionEvaluator expressionEvaluator)
-
getConditionEvaluator
ExpressionEvaluator getConditionEvaluator()
-
getNamespaces
Properties getNamespaces()
-
setNamespaces
void setNamespaces(Properties namespaces)
-
-