public enum RankDir extends Enum<RankDir>
| Modifier and Type | Method and Description |
|---|---|
static RankDir |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RankDir[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RankDir TB
public static final RankDir BT
public static final RankDir LR
public static final RankDir RL
public static RankDir[] values()
for (RankDir c : RankDir.values()) System.out.println(c);
public static RankDir 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 © 2006–2016 Volker Bergmann. All rights reserved.