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

com.braintreegateway.MultipleValueOrTextNode Maven / Gradle / Ivy

There is a newer version: 3.32.0_1
Show newest version
package com.braintreegateway;

import java.util.Arrays;
import java.util.List;

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

    public T in(List items) {
        return assembleMultiValueCriteria(items);
    }

    public T in(S... items) {
        return in(Arrays.asList(items));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy