public enum CoordinateOrigin extends Enum<CoordinateOrigin>
Enum Constant and Description |
---|
BaseLine
The lowest coordinate of text should be treated as the baseline.
|
Descender
The lowest coordinate of text should be treated as the descender line.
|
Modifier and Type | Method and Description |
---|---|
static CoordinateOrigin |
getByValue(int value) |
int |
getValue() |
static CoordinateOrigin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoordinateOrigin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoordinateOrigin BaseLine
The lowest coordinate of text should be treated as the baseline.
public static final CoordinateOrigin Descender
The lowest coordinate of text should be treated as the descender line.
public static CoordinateOrigin[] values()
for (CoordinateOrigin c : CoordinateOrigin.values()) System.out.println(c);
public static CoordinateOrigin 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 CoordinateOrigin getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.