Package jpicedt.format.input.util
Interface ExpressionConstants
-
- All Known Implementing Classes:
AbstractRegularExpression,AlternateExpression,BeginPictureExpression,BeginPsPictureExpression,CommentExpression,Context,DefaultParser,EepicDrawlineCommand,EepicLineThicknessExpression,EepicParser,EepicPathCommand,EnclosingExpression,EndPictureExpression,EndPsPictureExpression,InstanciationExpression,LaTeXBox,LaTeXCircle,LaTeXInstanciationExpression,LaTeXLine,LaTeXOval,LaTeXParser,LaTeXPicPointExpression,LaTeXPutExpression,LineThicknessExpression,LiteralExpression,NotParsableExpression,NumericalExpression,OptionalExpression,PicArrowTypeExpression,PicBezierExpression,PicColorExpression,PicDashStatement,PicEllipseExpression,PicEndExpression,PicGroupExpression,PicLineExpression,PicPointExpression,PicPolygonExpression,PicRectangleExpression,PsArcExpression,PsBezierExpression,PsBox,PsCircleExpression,PsEllipseExpression,PsFrameExpression,PsObjectExpression,PsPolygonExpression,PsQDiskExpression,PsQLineExpression,PsRPutExpression,PSTAngleParameter,PSTArrowExpression,PSTBooleanExpression,PSTColorExpression,PSTDashExpression,PSTDotStyleExpression,PSTFillStyleExpression,PSTInstanciationExpression,PSTLengthParameter,PSTLineStyleExpression,PSTParametersExpression,PSTPicPointExpression,PstricksParser,PsUnitLengthExpression,RegExExpression,RepeatExpression,RootExpression,SequenceExpression,StarExpression,StatementExpression,UnitLengthExpression,UserDefinedColorExpression,WhiteSpaces,WhiteSpacesOrEOL,WildCharExpression,WordExpression
public interface ExpressionConstantsConstants used by subclasses of AbstractRegularExpression.- Since:
- jpicedt 1.3
- Version:
- $Id: ExpressionConstants.java,v 1.7.2.1 2007/09/02 11:56:13 reynal Exp $
- Author:
- Sylvain Reynal
-
-
Field Summary
Fields Modifier and Type Field Description static intANY_CHARconstant for WildCharExpressionstatic intANY_CHAR_EOLconstant for WildCharExpressionstatic intANY_SIGNsign for NumericalExpressionstatic intAT_LEASTRepeatExpression modestatic intAT_MOSTRepeatExpression modestatic booleanDEBUGdebug flag ; turn on for verbose parsingstatic intDOUBLEtype for NumericalExpressionstatic intEOLconstant for WildCharExpressionstatic intEXACTLYRepeatExpression modestatic intINTEGERtype for NumericalExpressionstatic intNEGATIVEsign for NumericalExpressionstatic intNON_NULLsign for NumericalExpressionstatic intPOSITIVEsign for NumericalExpressionstatic intSTRICTLY_NEGATIVEsign for NumericalExpressionstatic intSTRICTLY_POSITIVEsign for NumericalExpressionstatic WhiteSpacesWHITE_SPACESplaceholder for WildSpaces expression (which is used pretty often)static WhiteSpacesOrEOLWHITE_SPACES_OR_EOLplaceholder for WildSpacesOrEOL expression (which is used pretty often)
-
-
-
Field Detail
-
DEBUG
static final boolean DEBUG
debug flag ; turn on for verbose parsing- See Also:
- Constant Field Values
-
INTEGER
static final int INTEGER
type for NumericalExpression- See Also:
- Constant Field Values
-
DOUBLE
static final int DOUBLE
type for NumericalExpression- See Also:
- Constant Field Values
-
ANY_SIGN
static final int ANY_SIGN
sign for NumericalExpression- See Also:
- Constant Field Values
-
POSITIVE
static final int POSITIVE
sign for NumericalExpression- See Also:
- Constant Field Values
-
NEGATIVE
static final int NEGATIVE
sign for NumericalExpression- See Also:
- Constant Field Values
-
STRICTLY_POSITIVE
static final int STRICTLY_POSITIVE
sign for NumericalExpression- See Also:
- Constant Field Values
-
STRICTLY_NEGATIVE
static final int STRICTLY_NEGATIVE
sign for NumericalExpression- See Also:
- Constant Field Values
-
NON_NULL
static final int NON_NULL
sign for NumericalExpression- See Also:
- Constant Field Values
-
EXACTLY
static final int EXACTLY
RepeatExpression mode- See Also:
- Constant Field Values
-
AT_LEAST
static final int AT_LEAST
RepeatExpression mode- See Also:
- Constant Field Values
-
AT_MOST
static final int AT_MOST
RepeatExpression mode- See Also:
- Constant Field Values
-
ANY_CHAR
static final int ANY_CHAR
constant for WildCharExpression- See Also:
- Constant Field Values
-
ANY_CHAR_EOL
static final int ANY_CHAR_EOL
constant for WildCharExpression- See Also:
- Constant Field Values
-
EOL
static final int EOL
constant for WildCharExpression- See Also:
- Constant Field Values
-
WHITE_SPACES
static final WhiteSpaces WHITE_SPACES
placeholder for WildSpaces expression (which is used pretty often)
-
WHITE_SPACES_OR_EOL
static final WhiteSpacesOrEOL WHITE_SPACES_OR_EOL
placeholder for WildSpacesOrEOL expression (which is used pretty often)
-
-