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.api.flickr; // w ww.j a va 2 s. com import com.koonen.utils.Enumeration; public class Perms extends Enumeration { public static final Perms NONE = new Perms("none", "none"); public static final Perms READ = new Perms("read", "read"); public static final Perms WRITE = new Perms("write", "write"); public static final Perms DELETE = new Perms("delete", "delete"); static { add(Perms.class, NONE); add(Perms.class, READ); add(Perms.class, WRITE); add(Perms.class, DELETE); } public Perms(String name, String value) { super(name, value); } public static Perms valueOf(String name) { Perms result = null; result = (Perms) valueOf(Perms.class, name); return result; } }