Back to project page FlickrBrowser.
The source code is released under:
MIT License
If you think the Android project FlickrBrowser 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.flickrbrowser.util; /*from w w w.j a v a2 s. c om*/ /** Image sizes supported by the Flickr API */ public enum PhotoSize { SMALL_SQUARE("s"), LARGE_SQUARE("q"), THUMBNAIL("t"), SMALL_240("m"), SMALL_320("n"), MEDIUM_640("z"), MEDIUM_800("c") ; private PhotoSize(final String text) { this.text = text; } private final String text; @Override public String toString() { return text; } }