Back to project page AndroidGridImageSearch.
The source code is released under:
MIT License
If you think the Android project AndroidGridImageSearch 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 net.julienlecomte.gridimagesearch; // w w w .ja va 2 s.c o m import java.io.Serializable; public class SearchSettings implements Serializable { private static final long serialVersionUID = 1L; public enum ImageSize { ANY, SMALL, MEDIUM, LARGE }; public enum ImageColor { ANY, BlACK_AND_WHITE_ONLY, COLOR_ONLY }; public ImageSize imageSize; public ImageColor imageColor; public boolean safesearch; public SearchSettings() { this.imageSize = ImageSize.ANY; this.imageColor = ImageColor.ANY; this.safesearch = false; } }