Uses of Class
org.apache.poi.xwpf.usermodel.BreakClear

Packages that use BreakClear
org.apache.poi.xwpf.usermodel   
 

Uses of BreakClear in org.apache.poi.xwpf.usermodel
 

Fields in org.apache.poi.xwpf.usermodel declared as BreakClear
static BreakClear BreakClear.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.
static BreakClear BreakClear.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.
static BreakClear BreakClear.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.
static BreakClear BreakClear.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.
 

Methods in org.apache.poi.xwpf.usermodel that return BreakClear
static BreakClear BreakClear.valueOf(int type)
           
static BreakClear[] BreakClear.values()
           
 

Methods in org.apache.poi.xwpf.usermodel with parameters of type BreakClear
 void XWPFRun.addBreak(BreakClear clear)
          Specifies that a break shall be placed at the current location in the run content.