public enum JPEGFormat extends Enum<JPEGFormat>
Enum Constant and Description |
---|
BaselineOptimized
Represents the optimized JPEG format.
|
BaselineStandard
Represents the standard JPEG format.
|
Scans_3
Represents the 3scans JPEG format.
|
Scans_4
Represents the 4scans JPEG format.
|
Scans_5
Represents the 5scans JPEG format.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Retrieves the JPEG format value.
|
static JPEGFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JPEGFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JPEGFormat BaselineStandard
public static final JPEGFormat BaselineOptimized
public static final JPEGFormat Scans_3
public static final JPEGFormat Scans_4
public static final JPEGFormat Scans_5
public static JPEGFormat[] values()
for (JPEGFormat c : JPEGFormat.values()) System.out.println(c);
public static JPEGFormat 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 getValue()
Copyright © 1982–2022 Adobe Systems Inc.. All rights reserved.