public enum LineSpacing extends Enum<LineSpacing>
LineSpacing class.
Enum Constant and Description |
---|
AT_LEAST |
DOUBLE |
FIXED |
ONE_AND_HALF |
PROPORTIONAL |
SINGLE |
Modifier and Type | Method and Description |
---|---|
static LineSpacing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineSpacing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineSpacing SINGLE
public static final LineSpacing ONE_AND_HALF
public static final LineSpacing DOUBLE
public static final LineSpacing AT_LEAST
public static final LineSpacing FIXED
public static final LineSpacing PROPORTIONAL
public static LineSpacing[] values()
for (LineSpacing c : LineSpacing.values()) System.out.println(c);
public static LineSpacing 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 © 2010–2021. All rights reserved.