A B C E F G H I J L M N O P R S T X

A

add(Element...) - Method in interface org.joox.X
Add some elements to the set of matched elements
add(X...) - Method in interface org.joox.X
Add some elements to the set of matched elements
after(String) - Method in interface org.joox.X
Add content after each element in the set of matched elements.
after(Content) - Method in interface org.joox.X
Add content after each element in the set of matched elements.
all() - Static method in class org.joox.JOOX
A filter that always returns true
and(Filter...) - Static method in class org.joox.JOOX
Combine filters
append(String) - Method in interface org.joox.X
Append content to the end of each element's content in the set of matched elements.
append(Content) - Method in interface org.joox.X
Append content to the end of each element's content in the set of matched elements.
attr(String) - Method in interface org.joox.X
Get the attribute name from the first element in the set of matched elements, or null if the first element does not have that attribute.
attr(String, String) - Method in interface org.joox.X
Set an attribute on all elements in the set of matched elements.
attr(String, Content) - Method in interface org.joox.X
Set an attribute on all elements in the set of matched elements.
attributes(String) - Static method in class org.joox.JOOX
Create a mapper that returns all attributes with a given name
attrs(String) - Method in interface org.joox.X
Get the attribute name from all elements in the set of matched elements

B

before(String) - Method in interface org.joox.X
Add content before each element in the set of matched elements.
before(Content) - Method in interface org.joox.X
Add content before each element in the set of matched elements.
builder() - Static method in class org.joox.JOOX
Get a document builder

C

children() - Method in interface org.joox.X
Find all children of each element in the current set of matched elements.
children(String) - Method in interface org.joox.X
Find all children of each element in the current set of matched elements.
children(Filter) - Method in interface org.joox.X
Find all children of each element in the current set of matched elements.
Content - Interface in org.joox
A Callback providing (mostly new) content for each element
content(int, Element) - Method in interface org.joox.Content
The callback method invoked for every matched element.
content(String) - Static method in class org.joox.JOOX
Get a constant content that returns the same value for all elements.
content() - Method in interface org.joox.X
Get the XML content of the first element in the set of matched elements, or null if there are no matched elements
content(String) - Method in interface org.joox.X
Add some XML content to all elements in the set of matched elements (possibly replacing existing content).
content(Content) - Method in interface org.joox.X
Add some XML content to all elements in the set of matched elements (possibly replacing existing content).
contents() - Method in interface org.joox.X
Get all XML content of the elements in the set of matched elements.
copy() - Method in interface org.joox.X
Get a copy of the X wrapper.

E

Each - Interface in org.joox
A callback to be executed for a set of matched elements.
each(int, Element) - Method in interface org.joox.Each
The callback method invoked for every matched element.
each(Each) - Method in interface org.joox.X
Execute a callback for every element in the current set of matched elements.
empty() - Method in interface org.joox.X
Removes all content from all elements in the set of matched elements.
eq(int) - Method in interface org.joox.X
Reduce the current set of matched elements to the element at a given index
even() - Static method in class org.joox.JOOX
A filter that returns true on all even indexes (starting with 0!)

F

Filter - Interface in org.joox
A filter indicating whether an element/index should be kept when reducing an X node set
filter(int, Element) - Method in interface org.joox.Filter
The callback method invoked for every matched element.
filter(String) - Method in interface org.joox.X
Reduce the current set of matched elements.
filter(Filter) - Method in interface org.joox.X
Reduce the current set of matched elements.
find() - Method in interface org.joox.X
Find all descendants of each element in the current set of matched elements.
find(String) - Method in interface org.joox.X
Find all descendants of each element in the current set of matched elements.
find(Filter) - Method in interface org.joox.X
Find all descendants of each element in the current set of matched elements.
first() - Method in interface org.joox.X
Get the first in a set of matched elements.

G

get(int) - Method in interface org.joox.X
Get an element from the set of matched elements at a given index
get() - Method in interface org.joox.X
Get an the set of matched elements

H

has(String) - Method in interface org.joox.X
Reduce the set of matched element to those who have a descendant that matches a selector.
has(Filter) - Method in interface org.joox.X
Reduce the set of matched element to those who have a descendant that matches a filter.

I

id() - Method in interface org.joox.X
Get the first id value This is the same as calling id(0)
id(int) - Method in interface org.joox.X
Get a list of id values in the current set of matched elements.
ids(String...) - Static method in class org.joox.JOOX
Create a filter matching id attributes
ids() - Static method in class org.joox.JOOX
Create a mapper that returns all id attributes
ids() - Method in interface org.joox.X
Get a list of id values in the current set of matched elements.
is(String) - Method in interface org.joox.X
Check if at least one element in the set of matched elements satisfies a selector.
is(Filter) - Method in interface org.joox.X
Check if at least one element in the set of matched elements satisfies a filter.
iterable(NodeList) - Static method in class org.joox.JOOX
Wrap a NodeList into an Iterable
iterator(NodeList) - Static method in class org.joox.JOOX
Wrap a NodeList into an Iterator

J

JOOX - Class in org.joox
 
JOOX() - Constructor for class org.joox.JOOX
 
joox() - Static method in class org.joox.JOOX
Create an empty jOOX X element set
joox(Document) - Static method in class org.joox.JOOX
Wrap a DOM document in a jOOX X element set
joox(Element) - Static method in class org.joox.JOOX
Wrap a DOM element in a jOOX X element set

L

last() - Method in interface org.joox.X
Get the last in a set of matched elements.
list(NodeList) - Static method in class org.joox.JOOX
Wrap a NodeList into an List

M

map(int, Element) - Method in interface org.joox.Mapper
The callback method invoked for every matched element.
map(Mapper<E>) - Method in interface org.joox.X
Map the set of matched elements to a list of something
Mapper<E> - Interface in org.joox
A mapping type providing data for every element.

N

next() - Method in interface org.joox.X
Get the immediate next sibling of every element in set of matched elements.
next(String) - Method in interface org.joox.X
Get the immediate next sibling of every element in set of matched elements, matching a selector
next(Filter) - Method in interface org.joox.X
Get the immediate next sibling of every element in set of matched elements, matching a filter
nextAll() - Method in interface org.joox.X
Get all next siblings of every element in a set of matched elements
nextAll(String) - Method in interface org.joox.X
Get all next siblings of every element in a set of matched elements, matching a selector
nextAll(Filter) - Method in interface org.joox.X
Get all next siblings of every element in a set of matched elements, matching a filter
nextUntil(String) - Method in interface org.joox.X
Get all next siblings of every element in a set of matched elements until the provided selector matches
nextUntil(Filter) - Method in interface org.joox.X
Get all next siblings of every element in a set of matched elements until the provided filter matches
nextUntil(String, String) - Method in interface org.joox.X
Get all next siblings of every element in a set of matched elements, matching a selector, until the provided selector matches
nextUntil(String, Filter) - Method in interface org.joox.X
Get all next siblings of every element in a set of matched elements, matching a filter, until the provided selector matches
nextUntil(Filter, String) - Method in interface org.joox.X
Get all next siblings of every element in a set of matched elements, matching a selector until the provided filter matches
nextUntil(Filter, Filter) - Method in interface org.joox.X
Get all next siblings of every element in a set of matched elements, matching a filter until the provided filter matches
none() - Static method in class org.joox.JOOX
A filter that always returns false
not(Filter) - Static method in class org.joox.JOOX
Inverse a filter
not(String) - Method in interface org.joox.X
Remove elements from the set of matched elements.
not(Filter) - Method in interface org.joox.X
Remove elements from the set of matched elements.

O

odd() - Static method in class org.joox.JOOX
A filter that returns true on all odd indexes (starting with 0!)
or(Filter...) - Static method in class org.joox.JOOX
Combine filters
org.joox - package org.joox
 

P

parent() - Method in interface org.joox.X
Get the immediate parent elements of every element in a set of matched elements
parent(String) - Method in interface org.joox.X
Get the immediate parent elements of every element in a set of matched elements, matching a selector
parent(Filter) - Method in interface org.joox.X
Get the immediate parent elements of every element in a set of matched elements, matching a filter
parents() - Method in interface org.joox.X
Get all ancestor elements of every element in a set of matched elements
parents(String) - Method in interface org.joox.X
Get all ancestor elements of every element in a set of matched elements, matching a selector
parents(Filter) - Method in interface org.joox.X
Get all ancestor elements of every element in a set of matched elements, matching a filter
parentsUntil(String) - Method in interface org.joox.X
Get all ancestors of every element in a set of matched elements until the provided selector matches
parentsUntil(Filter) - Method in interface org.joox.X
Get all ancestors of every element in a set of matched elements until the provided filter matches
parentsUntil(String, String) - Method in interface org.joox.X
Get all ancestors of every element in a set of matched elements, matching a selector, until the provided selector matches
parentsUntil(String, Filter) - Method in interface org.joox.X
Get all ancestors of every element in a set of matched elements, matching a filter, until the provided selector matches
parentsUntil(Filter, String) - Method in interface org.joox.X
Get all ancestors of every element in a set of matched elements, matching a selector until the provided filter matches
parentsUntil(Filter, Filter) - Method in interface org.joox.X
Get all ancestors of every element in a set of matched elements, matching a filter until the provided filter matches
prepend(String) - Method in interface org.joox.X
Prepend content to the beginning of each element's content in the set of matched elements.
prepend(Content) - Method in interface org.joox.X
Prepend content to the beginning of each element's content in the set of matched elements.
prev() - Method in interface org.joox.X
Get the immediate previous sibling of every element in set of matched elements.
prev(String) - Method in interface org.joox.X
Get the immediate previous sibling of every element in set of matched elements, matching a selector
prev(Filter) - Method in interface org.joox.X
Get the immediate previous sibling of every element in set of matched elements, matching a filter
prevAll() - Method in interface org.joox.X
Get all previous siblings of every element in a set of matched elements
prevAll(String) - Method in interface org.joox.X
Get all previous siblings of every element in a set of matched elements, matching a selector
prevAll(Filter) - Method in interface org.joox.X
Get all previous siblings of every element in a set of matched elements, matching a filter
prevUntil(String) - Method in interface org.joox.X
Get all previous siblings of every element in a set of matched elements until the provided selector matches
prevUntil(Filter) - Method in interface org.joox.X
Get all previous siblings of every element in a set of matched elements until the provided filter matches
prevUntil(String, String) - Method in interface org.joox.X
Get all previous siblings of every element in a set of matched elements, matching a selector, until the provided selector matches
prevUntil(String, Filter) - Method in interface org.joox.X
Get all previous siblings of every element in a set of matched elements, matching a filter, until the provided selector matches
prevUntil(Filter, String) - Method in interface org.joox.X
Get all previous siblings of every element in a set of matched elements, matching a selector until the provided filter matches
prevUntil(Filter, Filter) - Method in interface org.joox.X
Get all previous siblings of every element in a set of matched elements, matching a filter until the provided filter matches

R

remove() - Method in interface org.joox.X
Removes all elements in the set of matched elements.
remove(String) - Method in interface org.joox.X
Removes all elements in the set of matched elements, matching a selector
remove(Filter) - Method in interface org.joox.X
Removes all elements in the set of matched elements, matching a filter
removeAttr(String) - Method in interface org.joox.X
Remove an attribute from all elements in the set of matched elements.
replaceWith(String) - Method in interface org.joox.X
Replace all elements in the set of matched elements with some new content.
replaceWith(Content) - Method in interface org.joox.X
Replace all elements in the set of matched elements with some new content.

S

selector(String) - Static method in class org.joox.JOOX
A filter that returns all elements matched by a given selector.
siblings() - Method in interface org.joox.X
Get all siblings of every element in a set of matched elements
siblings(String) - Method in interface org.joox.X
Get all siblings of every element in a set of matched elements, matching a selector
siblings(Filter) - Method in interface org.joox.X
Get all siblings of every element in a set of matched elements, matching a filter
size() - Method in interface org.joox.X
Get the number of matched elements in the set of matched elements
slice(int) - Method in interface org.joox.X
Reduce the set of matched elements by specifying a range of indexes This is the same as calling slice(start, Integer.MAX_VALUE)
slice(int, int) - Method in interface org.joox.X
Reduce the set of matched elements by specifying a range of indexes

T

tag(String) - Static method in class org.joox.JOOX
A filter that returns all elements with a given tag name
tag() - Method in interface org.joox.X
Get the first tag name in the current set of matched elements.
tag(int) - Method in interface org.joox.X
Get a list of tag names in the current set of matched elements.
tags() - Method in interface org.joox.X
Get a list of tag names in the current set of matched elements.
text() - Method in interface org.joox.X
Get the text content of the first element in the set of matched elements, or null if there are no matched elements.
text(String) - Method in interface org.joox.X
Set some text content to all elements in the set of matched elements (possibly replacing existing content).
text(Content) - Method in interface org.joox.X
Set some text content to all elements in the set of matched elements (possibly replacing existing content).
texts() - Method in interface org.joox.X
Get all text content of the elements in the set of matched elements.

X

X - Interface in org.joox
A wrapper type for Element This is the main type of the jOOX library.

A B C E F G H I J L M N O P R S T X

Copyright © 2011. All Rights Reserved.