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