Package org.apache.poi.ss.formula.ptg
Class AttrPtg.SpaceType
java.lang.Object
org.apache.poi.ss.formula.ptg.AttrPtg.SpaceType
- Enclosing class:
AttrPtg
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
01H = Carriage returns before the next token (not allowed before tParen token)static final int
05H = Carriage returns before closing parenthesis (only allowed before tParen, tFunc, and tFuncVar tokens)static final int
03H = Carriage returns before opening parenthesis (only allowed before tParen token)static final int
06H = Spaces following the equality sign (only in macro sheets)static final int
00H = Spaces before the next token (not allowed before tParen token)static final int
04H = Spaces before closing parenthesis (only allowed before tParen, tFunc, and tFuncVar tokens)static final int
02H = Spaces before opening parenthesis (only allowed before tParen token) -
Method Summary
-
Field Details
-
SPACE_BEFORE
public static final int SPACE_BEFORE00H = Spaces before the next token (not allowed before tParen token)- See Also:
-
CR_BEFORE
public static final int CR_BEFORE01H = Carriage returns before the next token (not allowed before tParen token)- See Also:
-
SPACE_BEFORE_OPEN_PAREN
public static final int SPACE_BEFORE_OPEN_PAREN02H = Spaces before opening parenthesis (only allowed before tParen token)- See Also:
-
CR_BEFORE_OPEN_PAREN
public static final int CR_BEFORE_OPEN_PAREN03H = Carriage returns before opening parenthesis (only allowed before tParen token)- See Also:
-
SPACE_BEFORE_CLOSE_PAREN
public static final int SPACE_BEFORE_CLOSE_PAREN04H = Spaces before closing parenthesis (only allowed before tParen, tFunc, and tFuncVar tokens)- See Also:
-
CR_BEFORE_CLOSE_PAREN
public static final int CR_BEFORE_CLOSE_PAREN05H = Carriage returns before closing parenthesis (only allowed before tParen, tFunc, and tFuncVar tokens)- See Also:
-
SPACE_AFTER_EQUALITY
public static final int SPACE_AFTER_EQUALITY06H = Spaces following the equality sign (only in macro sheets)- See Also:
-