public enum ImageFilterType extends Enum<ImageFilterType>
Enumeration representing image filter type.
Enum Constant and Description |
---|
CCITTFax
CCITTFax filter
|
Flate
Flate filter
|
Jpeg
Jpeg filter
|
Jpeg2000
Jpeg2000 filter
|
Modifier and Type | Method and Description |
---|---|
static ImageFilterType |
getByValue(int value) |
int |
getValue() |
static ImageFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageFilterType Jpeg2000
public static final ImageFilterType Jpeg
public static final ImageFilterType Flate
public static final ImageFilterType CCITTFax
public static ImageFilterType[] values()
for (ImageFilterType c : ImageFilterType.values()) System.out.println(c);
public static ImageFilterType 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 int getValue()
public static ImageFilterType getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.