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

com.bandwidth.voice.bxml.verbs.FileFormat Maven / Gradle / Ivy

Go to download

The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs

There is a newer version: 12.0.0
Show newest version

package com.bandwidth.voice.bxml.verbs;

import com.bandwidth.voice.bxml.verbs.adapter.FileFormatAdapter;
import java.util.Arrays;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

/**
 * File format that AudioProducer can handle
 */
@XmlJavaTypeAdapter(FileFormatAdapter.class)
public enum FileFormat {
    MP3("mp3"), WAV("wav");

    private final String name;

    FileFormat(String name) {
        this.name = name;
    }

    /**
     * Converts a string value to an  FileFormat Enum
     */
    public static FileFormat fromValue(String value) {
        return Arrays.asList(FileFormat.values()).stream().filter(e -> e.name().equalsIgnoreCase(value)).findFirst()
                .orElseThrow(() -> new IllegalArgumentException(String.format("Unsupported file format '%s'", value)));
    }

    @Override
    public String toString() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy