GPKGCoverageDataAlgorithms
Objective-C
@interface GPKGCoverageDataAlgorithms : NSObject
/**
* Get the name of the coverage data algorithm
*
* @param algorithm algorithm type
*
* @return algorithm name
*/
+(NSString *) name: (enum GPKGCoverageDataAlgorithm) algorithm;
/**
* Get the coverage data algorithm type from the algorithm name
*
* @param name algorithm name
*
* @return algorithm type
*/
+(enum GPKGCoverageDataAlgorithm) fromName: (NSString *) name;
@end
Swift
class GPKGCoverageDataAlgorithms : NSObject
Undocumented
-
Get the name of the coverage data algorithm
Declaration
Objective-C
+ (NSString *)name:(enum GPKGCoverageDataAlgorithm)algorithm;
Swift
class func name(_ algorithm: GPKGCoverageDataAlgorithm) -> String!
Parameters
algorithm
algorithm type
Return Value
algorithm name
-
Get the coverage data algorithm type from the algorithm name
Declaration
Objective-C
+ (enum GPKGCoverageDataAlgorithm)fromName:(NSString *)name;
Swift
class func fromName(_ name: String!) -> GPKGCoverageDataAlgorithm
Parameters
name
algorithm name
Return Value
algorithm type