Skip to content

Instantly share code, notes, and snippets.

@genderquery
Created February 4, 2017 03:20
Show Gist options
  • Save genderquery/56daf54b3d3cc5f570be27cf958853ce to your computer and use it in GitHub Desktop.
Save genderquery/56daf54b3d3cc5f570be27cf958853ce to your computer and use it in GitHub Desktop.
public enum ImageFormat {
DEFAULT(""),
PNG("png"),
PNG8("png8"),
PNG24("png24"),
PNG32("png32"),
JPG("jpg"),
BMP("bmp"),
GIF("gif"),
TIFF("tiff"),
EMF("emf"),
PS("ps"),
PDF("pdf"),
SVG("svg"),
SVGZ("svgz"),
UNKNOWN(null);
private String mString;
ImageFormat(String s) {
mString = s;
}
@Override
public String toString() {
return mString;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment