public enum ImageRotate extends Enum<ImageRotate>
Enum Constant and Description |
---|
ccw
Counter-Clockwise
|
cw
Clockwise
|
Modifier and Type | Method and Description |
---|---|
static ImageRotate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageRotate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageRotate cw
public static final ImageRotate ccw
public static ImageRotate[] values()
for (ImageRotate c : ImageRotate.values()) System.out.println(c);
public static ImageRotate 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 © 2024 Gentics Software. All rights reserved.