All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.braintreegateway.TextNode Maven / Gradle / Ivy

The newest version!
package com.braintreegateway;

public class TextNode extends PartialMatchNode {
    public TextNode(String nodeName, T parent) {
        super(nodeName, parent);
    }

    public T contains(String value) {
        return assembleCriteria("contains", value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy