public static enum Style.PositionedLayoutMode extends Enum<Style.PositionedLayoutMode>
| Enum Constant and Description |
|---|
FlipForRowReverse |
NoFlipForRowReverse |
| Modifier and Type | Method and Description |
|---|---|
static Style.PositionedLayoutMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.PositionedLayoutMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.PositionedLayoutMode FlipForRowReverse
public static final Style.PositionedLayoutMode NoFlipForRowReverse
public static Style.PositionedLayoutMode[] values()
for (Style.PositionedLayoutMode c : Style.PositionedLayoutMode.values()) System.out.println(c);
public static Style.PositionedLayoutMode 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 nullRevision 4.0.15 / 20220727-0149