public enum ActionOrientationType extends Enum<ActionOrientationType>
| Enum Constant and Description |
|---|
row
Row
|
statement
Statement
|
unknown
Unknown
|
| Modifier and Type | Method and Description |
|---|---|
static ActionOrientationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionOrientationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionOrientationType unknown
public static final ActionOrientationType row
public static final ActionOrientationType statement
public static ActionOrientationType[] values()
for (ActionOrientationType c : ActionOrientationType.values()) System.out.println(c);
public static ActionOrientationType 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 © 2000-2024 Sualeh Fatehi. All rights reserved.