public enum VerticalShifting extends Enum<VerticalShifting>
Enum Constant and Description |
---|
NONE
No shifting
|
SUBSCRIPT
The text is shifted to the bottom
|
SUPERSCRIPT
The text is shifted to the top
|
Modifier and Type | Method and Description |
---|---|
static VerticalShifting |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VerticalShifting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VerticalShifting NONE
public static final VerticalShifting SUBSCRIPT
public static final VerticalShifting SUPERSCRIPT
public static VerticalShifting[] values()
for (VerticalShifting c : VerticalShifting.values()) System.out.println(c);
public static VerticalShifting 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. All rights reserved.