Class SqlReservedWords

java.lang.Object
org.litebridgedb.db.spi.util.SqlReservedWords

public final class SqlReservedWords extends Object
Utility class for working with SQL reserved words.

This class provides functionality to verify if a given word is a reserved keyword in SQL. The list of reserved words is predefined and immutable.

  • Method Details

    • contains

      public static boolean contains(String word)
      Checks if the given word is a SQL reserved word.
      Parameters:
      word - The word to check.
      Returns:
      true if the word is a reserved word, false otherwise.