Uses of Class
jodd.jerry.Jerry

Packages that use Jerry
Package
Description
Jerry - Java jQuery!
  • Uses of Jerry in jodd.jerry

    Classes in jodd.jerry that implement interfaces with type arguments of type Jerry
    Modifier and Type
    Class
    Description
    class 
    Jerry is JQuery in Java.
    Fields in jodd.jerry declared as Jerry
    Modifier and Type
    Field
    Description
    protected final Jerry
    Jerry.parent
     
    Methods in jodd.jerry that return Jerry
    Modifier and Type
    Method
    Description
    Jerry.add(String selector)
    Adds elements to the set of matched elements.
    Jerry.addClass(String... classNames)
    Adds the specified class(es) to each of the set of matched elements.
    Jerry.after(String html)
    Inserts content, specified by the parameter, after each element in the set of matched elements.
    Jerry.append(String html)
    Inserts content, specified by the parameter, to the end of each element in the set of matched elements.
    Jerry.attr(String name, String value)
    Sets one or more attributes for the set of matched elements.
    Jerry.before(String html)
    Inserts content, specified by the parameter, before each element in the set of matched elements.
    Jerry.children()
    Gets the immediate children of each element in the set of matched elements.
    Jerry.contents()
    Get the children of each element in the set of matched elements, including text and comment nodes.
    Jerry.css(String... css)
    Sets one or more CSS properties for the set of matched elements.
    Jerry.css(String propertyName, String value)
    Sets one or more CSS properties for the set of matched elements.
    Jerry.detach()
    Removes the set of matched elements from the DOM.
    Jerry.each(JerryFunction function)
    Iterates over a jQuery object, executing a function for each matched element.
    Jerry.eachNode(JerryNodeFunction function)
    Iterates over a jQuery object, executing a function for each matched element.
    Jerry.empty()
    Removes all child nodes of the set of matched elements from the DOM.
    Jerry.end()
    Ends the most recent filtering operation in the current chain and returns the set of matched elements to its previous state.
    Jerry.eq(int value)
    Reduces the set of matched elements to the one at the specified index.
    Jerry.filter(String cssSelectors)
    Reduces the set of matched elements to those that match the selector.
    Jerry.filter(JerryFunction jerryFunction)
    Reduces the set of matched elements to those that pass the function's test.
    Jerry.find(String cssSelector)
    Gets the descendants of each element in the current set of matched elements, filtered by a selector.
    Jerry.first()
    Reduces the set of matched elements to the first in the set.
    Jerry.form(String formCssSelector, JerryFormHandler jerryFormHandler)
    Processes all forms, collects all form parameters and calls back the JerryFormHandler.
    Jerry.gt(int value)
    Reduces the set of matched elements to the one at an index greater than specified index.
    Jerry.has(String cssSelectors)
    Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element.
    Jerry.html(String html)
    Sets the HTML contents of each element in the set of matched elements.
    Jerry.last()
    Reduces the set of matched elements to the last in the set.
    Jerry.lt(int value)
    Reduces the set of matched elements to the one at an index less than specified index.
    Jerry.next()
    Gets the immediately following sibling of each element in the set of matched elements.
    Jerry.nextAll()
    Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.
    Jerry.not(String cssSelector)
    Removes elements from the set of matched elements.
    static Jerry
    Jerry.of(char[] content)
    Parses input sequence and creates new Jerry.
    static Jerry
    Jerry.of(CharSequence content)
    Parses input content and creates new Jerry.
    Jerry.parent()
    Gets the parent of each element in the current set of matched elements.
    JerryParser.parse(char[] content)
    Invokes parsing on Jerry DOMBuilder.
    JerryParser.parse(CharSequence content)
    Invokes parsing on Jerry DOMBuilder.
    Jerry.prepend(String html)
    Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
    Jerry.prev()
    Gets the immediately preceding sibling of each element in the set of matched elements.
    Jerry.prevAll()
    Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector.
    Jerry.remove()
    Removes the set of matched elements from the DOM.
    Jerry.removeAttr(String name)
    Removes an attribute from each element in the set of matched elements.
    Jerry.removeClass(String... classNames)
    Removes a single class, multiple classes, or all classes from each element in the set of matched elements.
    Jerry.replaceWith(String html)
    Replace each element in the set of matched elements with the provided new content and return the set of elements that was removed.
    Jerry.root()
    Returns root Jerry.
    Jerry.s(String cssSelector)
    Selects nodes.
    Jerry.siblings()
    Gets the siblings of each element in the set of matched elements.
    Jerry.text(String text)
    Sets the content of each element in the set of matched elements to the specified text.
    Jerry.toggleClass(String... classNames)
    Adds or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument.
    Jerry.unwrap()
    Remove the parents of the set of matched elements from the DOM, leaving the matched elements (and siblings, if any) in their place.
    Jerry.wrap(String html)
    Wraps an HTML structure around each element in the set of matched elements.
    Methods in jodd.jerry that return types with arguments of type Jerry
    Modifier and Type
    Method
    Description
    Jerry.iterator()
    Returns iterator over nodes contained in the Jerry object.
    Methods in jodd.jerry with parameters of type Jerry
    Modifier and Type
    Method
    Description
    void
    JerryFormHandler.onForm(Jerry form, Map<String,String[]> parameters)
    Invoked for each matched form.
    JerryFunction.onNode(Jerry node, int index)
    Invoked on node.
    Constructors in jodd.jerry with parameters of type Jerry
    Modifier
    Constructor
    Description
    protected
    Jerry(Jerry parent, List<Node> nodeList)
    Creates child Jerry.
    protected
    Jerry(Jerry parent, Node... nodes)
    Creates child Jerry.
    protected
    Jerry(Jerry parent, Node[] nodes1, Node[] nodes2)
    Creates child Jerry.