Class SaPatterns


  • public final class SaPatterns
    extends java.lang.Object
    Interfaces which hold precompile Patterns.
    Author:
    dam
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.util.regex.Pattern AGGREGATE_CLAUSE
      precompiled Pattern for group by or order by .
      static java.util.regex.Pattern COLUMN_NAME_CLAUSE
      precompiled Clause to extract the Column Name.
      static java.util.regex.Pattern CONTAINS_PRESENT
      precompiled Pattern.
      static java.util.regex.Pattern DDC_NAME_CLAUSE
      precompiled Clause to extract the Definition Name.
      static 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.
      static java.util.regex.Pattern FROM
      from pattern.
      static java.util.regex.Pattern FROM_CLAUSE
      precompiled Pattern for from.
      static java.util.regex.Pattern GROUPBY_CLAUSE
      precompiled Group By pattern.
      static java.util.regex.Pattern ORDERBY_CLAUSE
      precompiled Order By pattern.
      static java.util.regex.Pattern SELECT
      select pattern.
      static java.util.regex.Pattern SELECT_CLAUSE
      precompiled Pattern for select.
      static java.util.regex.Pattern SELECT_PRESENT
      precompiled Pattern for select.
      static java.util.regex.Pattern SPECIAL_COLUMN_NAME_CLAUSE
      precompiled Clause to extract the Column Name with special characters.
      static java.util.regex.Pattern WHERE_CLAUSE
      precompiled Pattern for where.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.