public enum LayoutDirection extends Enum<LayoutDirection> implements ChartEnum
Enum Constant and Description |
---|
HORIZONTAL |
VERTICAL |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static LayoutDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LayoutDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutDirection VERTICAL
public static final LayoutDirection HORIZONTAL
public static LayoutDirection[] values()
for (LayoutDirection c : LayoutDirection.values()) System.out.println(c);
public static LayoutDirection 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 String toString()
toString
in class Enum<LayoutDirection>
Copyright © 2025. All rights reserved.