Package com.saperion.constants
Class SaPatterns
- java.lang.Object
-
- com.saperion.constants.SaPatterns
-
public final class SaPatterns extends java.lang.ObjectInterfaces which hold precompile Patterns.- Author:
- dam
-
-
Field Summary
Fields Modifier and Type Field Description static java.util.regex.PatternAGGREGATE_CLAUSEprecompiled Pattern for group by or order by .static java.util.regex.PatternCOLUMN_NAME_CLAUSEprecompiled Clause to extract the Column Name.static java.util.regex.PatternCONTAINS_PRESENTprecompiled Pattern.static java.util.regex.PatternDDC_NAME_CLAUSEprecompiled Clause to extract the Definition Name.static java.util.regex.PatternFILE_EXTENSIONPrecompiled pattern to match a file-extension at the end of the input consisting of 2-4 word characters.static java.util.regex.PatternFROMfrom pattern.static java.util.regex.PatternFROM_CLAUSEprecompiled Pattern for from.static java.util.regex.PatternGROUPBY_CLAUSEprecompiled Group By pattern.static java.util.regex.PatternORDERBY_CLAUSEprecompiled Order By pattern.static java.util.regex.PatternSELECTselect pattern.static java.util.regex.PatternSELECT_CLAUSEprecompiled Pattern for select.static java.util.regex.PatternSELECT_PRESENTprecompiled Pattern for select.static java.util.regex.PatternSPECIAL_COLUMN_NAME_CLAUSEprecompiled Clause to extract the Column Name with special characters.static java.util.regex.PatternWHERE_CLAUSEprecompiled Pattern for where.
-
-
-
Field Detail
-
FROM
public static final java.util.regex.Pattern FROM
from pattern.
-
SELECT
public static final java.util.regex.Pattern SELECT
select pattern.
-
CONTAINS_PRESENT
public static final java.util.regex.Pattern CONTAINS_PRESENT
precompiled Pattern.
-
SELECT_PRESENT
public static final java.util.regex.Pattern SELECT_PRESENT
precompiled Pattern for select.
-
SELECT_CLAUSE
public static final java.util.regex.Pattern SELECT_CLAUSE
precompiled Pattern for select.
-
WHERE_CLAUSE
public static final java.util.regex.Pattern WHERE_CLAUSE
precompiled Pattern for where.
-
AGGREGATE_CLAUSE
public static final java.util.regex.Pattern AGGREGATE_CLAUSE
precompiled Pattern for group by or order by .
-
ORDERBY_CLAUSE
public static final java.util.regex.Pattern ORDERBY_CLAUSE
precompiled Order By pattern.
-
GROUPBY_CLAUSE
public static final java.util.regex.Pattern GROUPBY_CLAUSE
precompiled Group By pattern.
-
FROM_CLAUSE
public static final java.util.regex.Pattern FROM_CLAUSE
precompiled Pattern for from.
-
DDC_NAME_CLAUSE
public static final java.util.regex.Pattern DDC_NAME_CLAUSE
precompiled Clause to extract the Definition Name.
-
COLUMN_NAME_CLAUSE
public static final java.util.regex.Pattern COLUMN_NAME_CLAUSE
precompiled Clause to extract the Column Name.
-
SPECIAL_COLUMN_NAME_CLAUSE
public static final java.util.regex.Pattern SPECIAL_COLUMN_NAME_CLAUSE
precompiled Clause to extract the Column Name with special characters.
-
FILE_EXTENSION
public static final java.util.regex.Pattern FILE_EXTENSION
Precompiled pattern to match a file-extension at the end of the input consisting of 2-4 word characters. The extension is grouped.
-
-