public enum ExtractImageMode extends Enum<ExtractImageMode>
Defines different modes which can be used while extracting images from documents.
Enum Constant and Description |
---|
ActuallyUsed
Defines image extraction mode in which only those images are extracted that are actually
shown on a page.
|
DefinedInResources
Defines image extraction mode in which all images defined in resources for particular page
are extracted.
|
Modifier and Type | Method and Description |
---|---|
static ExtractImageMode |
getByValue(int value) |
int |
getValue() |
static ExtractImageMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtractImageMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtractImageMode DefinedInResources
Defines image extraction mode in which all images defined in resources for particular page are extracted.
public static final ExtractImageMode ActuallyUsed
Defines image extraction mode in which only those images are extracted that are actually shown on a page.
public static ExtractImageMode[] values()
for (ExtractImageMode c : ExtractImageMode.values()) System.out.println(c);
public static ExtractImageMode 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 ExtractImageMode getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.