public static enum ExternalResourceService.Format extends Enum<ExternalResourceService.Format>
Enum Constant and Description |
---|
A8
A8 format.
|
ARGB4444
ARGB4444 format.
|
RGB565
RGB565 format.
|
Modifier and Type | Method and Description |
---|---|
byte |
getSNIContext()
Returns the SNI value of this format.
|
static ExternalResourceService.Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExternalResourceService.Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalResourceService.Format A8
public static final ExternalResourceService.Format ARGB4444
public static final ExternalResourceService.Format RGB565
public byte getSNIContext()
public static ExternalResourceService.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 nameNullPointerException
- if the argument is nullpublic static ExternalResourceService.Format[] values()
for (ExternalResourceService.Format c : ExternalResourceService.Format.values()) System.out.println(c);