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

be.selckin.ws.util.java2php.php.PhpEnum Maven / Gradle / Ivy

package be.selckin.ws.util.java2php.php;

import javax.xml.namespace.QName;
import java.util.List;

public class PhpEnum extends PhpType  {
    private final List values;

    public PhpEnum(QName qName, String namespace, String name, List values) {
        super(qName, namespace, name);
        this.values = values;
    }

    public List getValues() {
        return values;
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy