Back to project page my-wallpaper.
The source code is released under:
MIT License
If you think the Android project my-wallpaper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.koonen.photostream.settings; // w w w. java 2 s.com import com.koonen.utils.Enumeration; /** * * @author dryganets * */ public class Network extends Enumeration { public static final Network FLICKR = new Network("Flickr", "flickr"); static { add(Network.class, FLICKR); } public static Network valueOf(String name) { Network result = null; result = (Network) valueOf(Network.class, name); return result; } public Network(String name, String value) { super(name, value); } }