You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
925 B
40 lines
925 B
// |
|
// GMSAutocompleteMatchFragment.h |
|
// Google Places SDK for iOS |
|
// |
|
// Copyright 2016 Google LLC |
|
// |
|
// Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of |
|
// Service: https://developers.google.com/maps/terms |
|
// |
|
|
|
|
|
#import <Foundation/Foundation.h> |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
/** |
|
* This class represents a matched fragment of a string. This is a contiguous range of characters |
|
* in a string, suitable for highlighting in an autocompletion UI. |
|
*/ |
|
@interface GMSAutocompleteMatchFragment : NSObject |
|
|
|
/** |
|
* The offset of the matched fragment. This is an index into a string. The character at this index |
|
* is the first matched character. |
|
*/ |
|
@property(nonatomic, readonly) NSUInteger offset; |
|
|
|
/** |
|
* The length of the matched fragment. |
|
*/ |
|
@property(nonatomic, readonly) NSUInteger length; |
|
|
|
/** |
|
* Initializer is not available. |
|
*/ |
|
- (instancetype)init NS_UNAVAILABLE; |
|
|
|
@end |
|
|
|
NS_ASSUME_NONNULL_END
|
|
|