public enum ECellConstraint extends Enum<ECellConstraint>
| Enum Constant and Description |
|---|
COLSPAN2
Cell spans two columns.
|
COLSPAN4
Celll spans four columns
|
| Modifier and Type | Method and Description |
|---|---|
static ECellConstraint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECellConstraint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECellConstraint COLSPAN2
public static final ECellConstraint COLSPAN4
public static ECellConstraint[] values()
for (ECellConstraint c : ECellConstraint.values()) System.out.println(c);
public static ECellConstraint 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 © 2011-2015 Sahits GmbH. All Rights Reserved.