public enum JpegSegmentType extends Enum<JpegSegmentType>
Enum Constant and Description |
---|
APP0
APP0 JPEG segment identifier -- JFIF data (also JFXX apparently).
|
APP1
APP1 JPEG segment identifier -- where Exif data is kept.
|
APP2
APP2 JPEG segment identifier.
|
APP3
APP3 JPEG segment identifier.
|
APP4
APP4 JPEG segment identifier.
|
APP5
APP5 JPEG segment identifier.
|
APP6
APP6 JPEG segment identifier.
|
APP7
APP7 JPEG segment identifier.
|
APP8
APP8 JPEG segment identifier.
|
APP9
APP9 JPEG segment identifier.
|
APPA
APPA (App10) JPEG segment identifier -- can hold Unicode comments.
|
APPB
APPB (App11) JPEG segment identifier.
|
APPC
APPC (App12) JPEG segment identifier.
|
APPD
APPD (App13) JPEG segment identifier -- IPTC data in here.
|
APPE
APPE (App14) JPEG segment identifier.
|
APPF
APPF (App15) JPEG segment identifier.
|
COM
JPEG comment segment identifier.
|
DHT
Define Huffman Table segment identifier.
|
DQT
Define Quantization Table segment identifier.
|
SOF0
Start-of-Frame (0) segment identifier.
|
SOF1
Start-of-Frame (1) segment identifier.
|
SOF10
Start-of-Frame (10) segment identifier.
|
SOF11
Start-of-Frame (11) segment identifier.
|
SOF13
Start-of-Frame (13) segment identifier.
|
SOF14
Start-of-Frame (14) segment identifier.
|
SOF15
Start-of-Frame (15) segment identifier.
|
SOF2
Start-of-Frame (2) segment identifier.
|
SOF3
Start-of-Frame (3) segment identifier.
|
SOF5
Start-of-Frame (5) segment identifier.
|
SOF6
Start-of-Frame (6) segment identifier.
|
SOF7
Start-of-Frame (7) segment identifier.
|
SOF8
Start-of-Frame (8) segment identifier.
|
SOF9
Start-of-Frame (9) segment identifier.
|
SOI
Start Of Image segment identifier.
|
Modifier and Type | Field and Description |
---|---|
byte |
byteValue |
boolean |
canContainMetadata |
static Collection<JpegSegmentType> |
canContainMetadataTypes |
Modifier and Type | Method and Description |
---|---|
static JpegSegmentType |
fromByte(byte segmentTypeByte) |
static JpegSegmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JpegSegmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JpegSegmentType APP0
public static final JpegSegmentType APP1
public static final JpegSegmentType APP2
public static final JpegSegmentType APP3
public static final JpegSegmentType APP4
public static final JpegSegmentType APP5
public static final JpegSegmentType APP6
public static final JpegSegmentType APP7
public static final JpegSegmentType APP8
public static final JpegSegmentType APP9
public static final JpegSegmentType APPA
public static final JpegSegmentType APPB
public static final JpegSegmentType APPC
public static final JpegSegmentType APPD
public static final JpegSegmentType APPE
public static final JpegSegmentType APPF
public static final JpegSegmentType SOI
public static final JpegSegmentType DQT
public static final JpegSegmentType DHT
public static final JpegSegmentType SOF0
public static final JpegSegmentType SOF1
public static final JpegSegmentType SOF2
public static final JpegSegmentType SOF3
public static final JpegSegmentType SOF5
public static final JpegSegmentType SOF6
public static final JpegSegmentType SOF7
public static final JpegSegmentType SOF8
public static final JpegSegmentType SOF9
public static final JpegSegmentType SOF10
public static final JpegSegmentType SOF11
public static final JpegSegmentType SOF13
public static final JpegSegmentType SOF14
public static final JpegSegmentType SOF15
public static final JpegSegmentType COM
public static final Collection<JpegSegmentType> canContainMetadataTypes
public final byte byteValue
public final boolean canContainMetadata
public static JpegSegmentType[] values()
for (JpegSegmentType c : JpegSegmentType.values()) System.out.println(c);
public static JpegSegmentType 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 JpegSegmentType fromByte(byte segmentTypeByte)
Copyright © 2002-2015 Drew Noakes. All Rights Reserved.