public static enum InputGroup.Direction extends Enum<InputGroup.Direction>
Enum Constant and Description |
---|
ASCENDANT
Ascendant order.
|
DESCENDANT
Descendant order.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static InputGroup.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputGroup.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputGroup.Direction ASCENDANT
public static final InputGroup.Direction DESCENDANT
public static InputGroup.Direction[] values()
for (InputGroup.Direction c : InputGroup.Direction.values()) System.out.println(c);
public static InputGroup.Direction 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<InputGroup.Direction>
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.