|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<BreakClear> org.apache.poi.xwpf.usermodel.BreakClear
public enum BreakClear
Specifies the set of possible restart locations which may be used as to determine the next available line when a break's type attribute has a value of textWrapping.
Enum Constant Summary | |
---|---|
ALL
Specifies that the text wrapping break shall advance the text to the next line in the WordprocessingML document which spans the full width of the line. |
|
LEFT
Specifies that the text wrapping break shall behave as follows: If this line is broken into multiple regions (a floating object in the center of the page has text wrapping on both sides: If this is the leftmost region of text flow on this line, advance the text to the next position on the line Otherwise, treat this as a text wrapping break of type all. |
|
NONE
Specifies that the text wrapping break shall advance the text to the next line in the WordprocessingML document, regardless of its position left to right or the presence of any floating objects which intersect with the line, This is the setting for a typical line break in a document. |
|
RIGHT
Specifies that the text wrapping break shall behave as follows: If this line is broken into multiple regions (a floating object in the center of the page has text wrapping on both sides: If this is the rightmost region of text flow on this line, advance the text to the next position on the next line Otherwise, treat this as a text wrapping break of type all. |
Method Summary | |
---|---|
int |
getValue()
|
static BreakClear |
valueOf(int type)
|
static BreakClear |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static BreakClear[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final BreakClear NONE
public static final BreakClear LEFT
public static final BreakClear RIGHT
public static final BreakClear ALL
Method Detail |
---|
public static BreakClear[] values()
for (BreakClear c : BreakClear.values()) System.out.println(c);
public static BreakClear 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 name
java.lang.NullPointerException
- if the argument is nullpublic int getValue()
public static BreakClear valueOf(int type)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |