GPKGSQLiteMasterTypes
Objective-C
@interface GPKGSQLiteMasterTypes : NSObject
Swift
class GPKGSQLiteMasterTypes : NSObject
SQLite Master table (sqlite_master) type column keywords
-
Get the name of the SQLite Master table type
Declaration
Objective-C
+ (NSString *)name:(enum GPKGSQLiteMasterType)type;
Swift
class func name(_ type: GPKGSQLiteMasterType) -> String!
Parameters
type
SQLite Master table type
Return Value
SQLite Master table type name
-
Get the SQLite Master table type from the SQLite Master table type name
Declaration
Objective-C
+ (enum GPKGSQLiteMasterType)fromName:(NSString *)name;
Swift
class func fromName(_ name: String!) -> GPKGSQLiteMasterType
Parameters
name
SQLite Master table type name
Return Value
SQLite Master table type