public enum FourthColumnWidthType extends Enum<FourthColumnWidthType>
| Modifier and Type | Method and Description |
|---|---|
static FourthColumnWidthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FourthColumnWidthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FourthColumnWidthType NONE
public static final FourthColumnWidthType PX
public static final FourthColumnWidthType PERCENT
public static final FourthColumnWidthType RELATIVE
public final String label
public static FourthColumnWidthType[] values()
for (FourthColumnWidthType c : FourthColumnWidthType.values()) System.out.println(c);
public static FourthColumnWidthType 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 © 2019. All rights reserved.