com.twilio.twiml.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Release Candidate for Next-Gen Twilio Java Helper Library
The newest version!
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();
}
};
}