Changed license to LGPLv3 or later.
[svjatoslav_commons.git] / src / main / java / eu / svjatoslav / commons / network / Locale.java
1 /*
2  * Svjatoslav Commons - shared library of common functionality.
3  * Copyright ©2012-2014, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 3 of the GNU Lesser General Public License
7  * or later as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.commons.network;
11
12 public enum Locale {
13         ENG("eng"), EST("est"), RUS("rus");
14
15         String asString;
16
17         Locale(final String asString) {
18                 this.asString = asString;
19         }
20
21         public String asString() {
22                 return asString;
23         }
24
25 }