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

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

Go to download

Selenium automates browsers. That's it! What you do with that power is entirely up to you.

There is a newer version: 4.0.0-beta-4
Show newest version
package org.openqa.selenium.devtools.v90.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