@InternalApi public enum FirebirdReservedWords extends java.lang.Enum<FirebirdReservedWords> implements ReservedWords
| Enum Constant and Description | 
|---|
| FIREBIRD_5_0 | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | isReservedWord(java.lang.CharSequence tokenText)Checks case-insensitively if the supplied token text is a reserved word. | 
| static FirebirdReservedWords | latest()Reserved words for latest known Firebird version. | 
| static FirebirdReservedWords | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static FirebirdReservedWords[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final FirebirdReservedWords FIREBIRD_5_0
public static FirebirdReservedWords[] values()
for (FirebirdReservedWords c : FirebirdReservedWords.values()) System.out.println(c);
public static FirebirdReservedWords valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static FirebirdReservedWords latest()
public boolean isReservedWord(java.lang.CharSequence tokenText)
ReservedWordsisReservedWord in interface ReservedWordstokenText - Token text to checktrue if the token text is a reserved word, false otherwiseCopyright © 2001-2023 Jaybird (Firebird JDBC) team. All rights reserved.