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 * API versions. Enum values are ordered from oldest to most recent.
012 */
013public enum APIVersion {
014    V_2008_08_01("2008-08-01"),
015    V_2010_04_01("2010-04-01");
016
017    /**
018     * The API version that this library version adheres to (always the last and most recent enum value).
019     */
020    public static final APIVersion CURRENT = APIVersion.values()[APIVersion.values().length - 1];
021
022    private final String xmlName;
023
024    private APIVersion(String xmlName) {
025        this.xmlName = xmlName;
026    }
027
028    @Override
029    public String toString() {
030        return this.xmlName;
031    }
032}
033