public enum ImageMergeMode extends Enum<ImageMergeMode>
Represents modes for merging images.
Enum Constant and Description |
---|
Center
Images aligned by center.
|
Horizontal
Images merged horizontally.
|
Vertical
Images merged vertically.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ImageMergeMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageMergeMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageMergeMode Vertical
Images merged vertically.
public static final ImageMergeMode Horizontal
Images merged horizontally.
public static final ImageMergeMode Center
Images aligned by center.
public static ImageMergeMode[] values()
for (ImageMergeMode c : ImageMergeMode.values()) System.out.println(c);
public static ImageMergeMode 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()
Copyright © 2024 Aspose. All Rights Reserved.