public enum ColumnAdjustment extends java.lang.Enum<ColumnAdjustment>
Modifier and Type | Class and Description |
---|---|
static class |
ColumnAdjustment.Adapter |
Enum Constant and Description |
---|
AUTOFITTOCONTENT |
AUTOFITTOWINDOW |
CUSTOMIZED |
Modifier and Type | Method and Description |
---|---|
static ColumnAdjustment |
fromValue(java.lang.String text) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static ColumnAdjustment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ColumnAdjustment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnAdjustment CUSTOMIZED
public static final ColumnAdjustment AUTOFITTOCONTENT
public static final ColumnAdjustment AUTOFITTOWINDOW
public static ColumnAdjustment[] values()
for (ColumnAdjustment c : ColumnAdjustment.values()) System.out.println(c);
public static ColumnAdjustment valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getValue()
public java.lang.String toString()
toString
in class java.lang.Enum<ColumnAdjustment>
public static ColumnAdjustment fromValue(java.lang.String text)