static enum FunUtil.Flag extends Enum<FunUtil.Flag>
ORDER MDX function.
| Modifier and Type | Field and Description |
|---|---|
(package private) boolean |
brk |
(package private) boolean |
descending |
| Modifier and Type | Method and Description |
|---|---|
static String[] |
getNames() |
static FunUtil.Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FunUtil.Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FunUtil.Flag ASC
public static final FunUtil.Flag DESC
public static final FunUtil.Flag BASC
public static final FunUtil.Flag BDESC
final boolean descending
final boolean brk
public static FunUtil.Flag[] values()
for (FunUtil.Flag c : FunUtil.Flag.values()) System.out.println(c);
public static FunUtil.Flag valueOf(String name)
IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullname - the name of the enum constant to be returned.