public enum TableOrderEnum extends Enum<TableOrderEnum> implements NamedEnum
Modifier and Type | Method and Description |
---|---|
static TableOrderEnum |
getByName(String name) |
String |
getName() |
org.jfree.util.TableOrder |
getOrder() |
static TableOrderEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableOrderEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableOrderEnum BY_ROW
public static final TableOrderEnum BY_COLUMN
public static TableOrderEnum[] values()
for (TableOrderEnum c : TableOrderEnum.values()) System.out.println(c);
public static TableOrderEnum 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 final org.jfree.util.TableOrder getOrder()
public static TableOrderEnum getByName(String name)
Copyright © 2016. All rights reserved.