public enum ImageEncoding extends Enum<ImageEncoding>
| Enum Constant and Description |
|---|
BASE64_PNG |
BINARY_PNG |
| Modifier and Type | Method and Description |
|---|---|
String |
machineRepresentation()
Gets the machineRepresentation
|
static ImageEncoding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageEncoding BASE64_PNG
public static final ImageEncoding BINARY_PNG
public static ImageEncoding[] values()
for (ImageEncoding c : ImageEncoding.values()) System.out.println(c);
public static ImageEncoding valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String machineRepresentation()
Copyright © 2015. All rights reserved.