public enum LineSpacingRule extends java.lang.Enum<LineSpacingRule>
Enum Constant and Description |
---|
AT_LEAST
Specifies that the height of the line shall be at least the value
specified, but may be expanded to fit its content as needed.
|
AUTO
Specifies that the line spacing of the parent object shall be
automatically determined by the size of its contents, with no
predetermined minimum or maximum size.
|
EXACT
Specifies that the height of the line shall be exactly the value
specified, regardless of the size of the contents If the contents are too
large for the specified height, then they shall be clipped as necessary.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static LineSpacingRule |
valueOf(int type) |
static LineSpacingRule |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LineSpacingRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineSpacingRule AUTO
public static final LineSpacingRule EXACT
public static final LineSpacingRule AT_LEAST
public static LineSpacingRule[] values()
for (LineSpacingRule c : LineSpacingRule.values()) System.out.println(c);
public static LineSpacingRule 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 int getValue()
public static LineSpacingRule valueOf(int type)
Copyright © 2005-2010 Potix Corporation. All Rights Reserved.