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

com.twilio.twiml.Event Maven / Gradle / Ivy

package com.twilio.twiml;

import com.google.common.base.Function;

public enum Event {
    INITIATED("initiated"),
    RINGING("ringing"),
    ANSWERED("answered"),
    COMPLETED("completed");

    private final String value;

    Event(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return this.value;
    }

    public static final Function TO_STRING = new Function() {
        @Override
        public String apply(Event event) {
            return event.toString();
        }
    };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy