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

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

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

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

/**
 * Enum of AudioParam types
 */
public class ParamType {

    private final java.lang.String paramType;

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy