001
002/*
003 * Copyright (C) 2011 Archie L. Cobbs. All rights reserved.
004 *
005 * $Id$
006 */
007
008package org.dellroad.jibxbindings.twilio.restapi;
009
010/**
011 * {@code IfMachine} paramter for outgoing dialing.
012 */
013public enum IfMachine {
014    CONTINUE("Continue"),
015    HANGUP("Hangup");
016
017    private final String xmlName;
018
019    private IfMachine(String xmlName) {
020        this.xmlName = xmlName;
021    }
022
023    @Override
024    public String toString() {
025        return this.xmlName;
026    }
027}
028