Uses of Class
org.sqlite.SQLiteConfig.Pragma
-
Packages that use SQLiteConfig.Pragma Package Description org.sqlite -
-
Uses of SQLiteConfig.Pragma in org.sqlite
Methods in org.sqlite that return SQLiteConfig.Pragma Modifier and Type Method Description static SQLiteConfig.PragmaSQLiteConfig.Pragma. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SQLiteConfig.Pragma[]SQLiteConfig.Pragma. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.sqlite with parameters of type SQLiteConfig.Pragma Modifier and Type Method Description private booleanSQLiteConfig. getBoolean(SQLiteConfig.Pragma pragma, java.lang.String defaultValue)Checks if the provided value is the default for a given pragma.private intSQLiteConfig. parseLimitPragma(SQLiteConfig.Pragma pragma, int defaultValue)Retrieves a pragma integer value.private voidSQLiteConfig. set(SQLiteConfig.Pragma pragma, boolean flag)Sets a pragma to the given boolean value.private voidSQLiteConfig. set(SQLiteConfig.Pragma pragma, int num)Sets a pragma to the given int value.voidSQLiteConfig. setPragma(SQLiteConfig.Pragma pragma, java.lang.String value)Sets a pragma's value.
-