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 . ja v a2s. c o m /** * * @author glick * */ public enum WallpaperSettingMode { ORIGINAL_MODE("original"), STRETCH_MODE("stretch"), AUTO_MODE("auto"); private final String name; private WallpaperSettingMode(String name) { this.name = name; } public String getName() { return name; } @Override public String toString() { return getName(); } }