public enum CompressionType extends Enum<CompressionType>
| Enum Constant and Description |
|---|
BASELINE_JPEG |
BITMAP |
LZW |
NULL_BACKGROUND |
NULL_FOREGROUND |
PNG |
RUN_LENGTH |
T4_1 |
T4_2 |
T6 |
| Modifier and Type | Method and Description |
|---|---|
static CompressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompressionType NULL_BACKGROUND
public static final CompressionType NULL_FOREGROUND
public static final CompressionType T6
public static final CompressionType T4_1
public static final CompressionType T4_2
public static final CompressionType BITMAP
public static final CompressionType RUN_LENGTH
public static final CompressionType BASELINE_JPEG
public static final CompressionType LZW
public static final CompressionType PNG
public static CompressionType[] values()
for (CompressionType c : CompressionType.values()) System.out.println(c);
public static CompressionType 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 nullCopyright (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.