|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ImageServiceParameters.IMAGE_FORMAT> com.esri.core.map.ImageServiceParameters.IMAGE_FORMAT
public static enum ImageServiceParameters.IMAGE_FORMAT
The format of the exported image. The default format is JPG_PNG
.
Values: jpgpng | png | png8 | png24 | jpg | bmp | gif | tiff
Enum Constant Summary | |
---|---|
BMP
Image format: bmp |
|
GIF
Image format: gif |
|
JPG
Image format: jpg |
|
JPG_PNG
Image format: jpgpng |
|
PNG
Image format: png |
|
PNG24
Image format: png24 |
|
PNG8
Image format: png8 |
|
TIFF
Image format: tiff |
Method Summary | |
---|---|
static ImageServiceParameters.IMAGE_FORMAT |
fromString(String str)
Returns image format whose name matches the input; null if there is no match. |
String |
toString()
|
static ImageServiceParameters.IMAGE_FORMAT |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ImageServiceParameters.IMAGE_FORMAT[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ImageServiceParameters.IMAGE_FORMAT JPG_PNG
public static final ImageServiceParameters.IMAGE_FORMAT PNG
public static final ImageServiceParameters.IMAGE_FORMAT PNG8
public static final ImageServiceParameters.IMAGE_FORMAT PNG24
public static final ImageServiceParameters.IMAGE_FORMAT JPG
public static final ImageServiceParameters.IMAGE_FORMAT BMP
public static final ImageServiceParameters.IMAGE_FORMAT GIF
public static final ImageServiceParameters.IMAGE_FORMAT TIFF
Method Detail |
---|
public static ImageServiceParameters.IMAGE_FORMAT[] values()
for (ImageServiceParameters.IMAGE_FORMAT c : ImageServiceParameters.IMAGE_FORMAT.values()) System.out.println(c);
public static ImageServiceParameters.IMAGE_FORMAT valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<ImageServiceParameters.IMAGE_FORMAT>
public static ImageServiceParameters.IMAGE_FORMAT fromString(String str)
str
- input string to match the image format.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |