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

org.openqa.selenium.devtools.v88.webaudio.model.NodeType Maven / Gradle / Ivy

package org.openqa.selenium.devtools.v88.webaudio.model;

import org.openqa.selenium.Beta;
import org.openqa.selenium.json.JsonInput;

/**
 * Enum of AudioNode types
 */
public class NodeType {

    private final java.lang.String nodeType;

    public NodeType(java.lang.String nodeType) {
        this.nodeType = java.util.Objects.requireNonNull(nodeType, "Missing value for NodeType");
    }

    private static NodeType fromJson(JsonInput input) {
        return new NodeType(input.nextString());
    }

    public String toJson() {
        return nodeType.toString();
    }

    public String toString() {
        return nodeType.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy