use crate::common::*;
use crate::Foundation::*;
typed_extensible_enum!(
pub type NSLinguisticTagScheme = NSString;
);
extern_static!(NSLinguisticTagSchemeTokenType: &'static NSLinguisticTagScheme);
extern_static!(NSLinguisticTagSchemeLexicalClass: &'static NSLinguisticTagScheme);
extern_static!(NSLinguisticTagSchemeNameType: &'static NSLinguisticTagScheme);
extern_static!(NSLinguisticTagSchemeNameTypeOrLexicalClass: &'static NSLinguisticTagScheme);
extern_static!(NSLinguisticTagSchemeLemma: &'static NSLinguisticTagScheme);
extern_static!(NSLinguisticTagSchemeLanguage: &'static NSLinguisticTagScheme);
extern_static!(NSLinguisticTagSchemeScript: &'static NSLinguisticTagScheme);
typed_extensible_enum!(
pub type NSLinguisticTag = NSString;
);
extern_static!(NSLinguisticTagWord: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagPunctuation: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagWhitespace: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagOther: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagNoun: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagVerb: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagAdjective: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagAdverb: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagPronoun: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagDeterminer: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagParticle: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagPreposition: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagNumber: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagConjunction: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagInterjection: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagClassifier: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagIdiom: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagOtherWord: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagSentenceTerminator: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagOpenQuote: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagCloseQuote: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagOpenParenthesis: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagCloseParenthesis: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagWordJoiner: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagDash: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagOtherPunctuation: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagParagraphBreak: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagOtherWhitespace: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagPersonalName: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagPlaceName: &'static NSLinguisticTag);
extern_static!(NSLinguisticTagOrganizationName: &'static NSLinguisticTag);
ns_enum!(
#[underlying(NSInteger)]
pub enum NSLinguisticTaggerUnit {
NSLinguisticTaggerUnitWord = 0,
NSLinguisticTaggerUnitSentence = 1,
NSLinguisticTaggerUnitParagraph = 2,
NSLinguisticTaggerUnitDocument = 3,
}
);
ns_options!(
#[underlying(NSUInteger)]
pub enum NSLinguisticTaggerOptions {
NSLinguisticTaggerOmitWords = 1 << 0,
NSLinguisticTaggerOmitPunctuation = 1 << 1,
NSLinguisticTaggerOmitWhitespace = 1 << 2,
NSLinguisticTaggerOmitOther = 1 << 3,
NSLinguisticTaggerJoinNames = 1 << 4,
}
);
extern_class!(
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(feature = "Foundation_NSLinguisticTagger")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
pub struct NSLinguisticTagger;
#[cfg(feature = "Foundation_NSLinguisticTagger")]
unsafe impl ClassType for NSLinguisticTagger {
type Super = NSObject;
type Mutability = InteriorMutable;
}
);
#[cfg(feature = "Foundation_NSLinguisticTagger")]
unsafe impl NSObjectProtocol for NSLinguisticTagger {}
extern_methods!(
#[cfg(feature = "Foundation_NSLinguisticTagger")]
unsafe impl NSLinguisticTagger {
#[cfg(feature = "Foundation_NSArray")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Init initWithTagSchemes:options:)]
pub unsafe fn initWithTagSchemes_options(
this: Allocated<Self>,
tag_schemes: &NSArray<NSLinguisticTagScheme>,
opts: NSUInteger,
) -> Id<Self>;
#[cfg(feature = "Foundation_NSArray")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other tagSchemes)]
pub unsafe fn tagSchemes(&self) -> Id<NSArray<NSLinguisticTagScheme>>;
#[cfg(feature = "Foundation_NSString")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other string)]
pub unsafe fn string(&self) -> Option<Id<NSString>>;
#[cfg(feature = "Foundation_NSString")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method(setString:)]
pub unsafe fn setString(&self, string: Option<&NSString>);
#[cfg(all(feature = "Foundation_NSArray", feature = "Foundation_NSString"))]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other availableTagSchemesForUnit:language:)]
pub unsafe fn availableTagSchemesForUnit_language(
unit: NSLinguisticTaggerUnit,
language: &NSString,
) -> Id<NSArray<NSLinguisticTagScheme>>;
#[cfg(all(feature = "Foundation_NSArray", feature = "Foundation_NSString"))]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other availableTagSchemesForLanguage:)]
pub unsafe fn availableTagSchemesForLanguage(
language: &NSString,
) -> Id<NSArray<NSLinguisticTagScheme>>;
#[cfg(feature = "Foundation_NSOrthography")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method(setOrthography:range:)]
pub unsafe fn setOrthography_range(
&self,
orthography: Option<&NSOrthography>,
range: NSRange,
);
#[cfg(feature = "Foundation_NSOrthography")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other orthographyAtIndex:effectiveRange:)]
pub unsafe fn orthographyAtIndex_effectiveRange(
&self,
char_index: NSUInteger,
effective_range: NSRangePointer,
) -> Option<Id<NSOrthography>>;
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method(stringEditedInRange:changeInLength:)]
pub unsafe fn stringEditedInRange_changeInLength(
&self,
new_range: NSRange,
delta: NSInteger,
);
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method(tokenRangeAtIndex:unit:)]
pub unsafe fn tokenRangeAtIndex_unit(
&self,
char_index: NSUInteger,
unit: NSLinguisticTaggerUnit,
) -> NSRange;
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method(sentenceRangeForRange:)]
pub unsafe fn sentenceRangeForRange(&self, range: NSRange) -> NSRange;
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method(enumerateTagsInRange:unit:scheme:options:usingBlock:)]
pub unsafe fn enumerateTagsInRange_unit_scheme_options_usingBlock(
&self,
range: NSRange,
unit: NSLinguisticTaggerUnit,
scheme: &NSLinguisticTagScheme,
options: NSLinguisticTaggerOptions,
block: &Block<(*mut NSLinguisticTag, NSRange, NonNull<Bool>), ()>,
);
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other tagAtIndex:unit:scheme:tokenRange:)]
pub unsafe fn tagAtIndex_unit_scheme_tokenRange(
&self,
char_index: NSUInteger,
unit: NSLinguisticTaggerUnit,
scheme: &NSLinguisticTagScheme,
token_range: NSRangePointer,
) -> Option<Id<NSLinguisticTag>>;
#[cfg(all(feature = "Foundation_NSArray", feature = "Foundation_NSValue"))]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other tagsInRange:unit:scheme:options:tokenRanges:)]
pub unsafe fn tagsInRange_unit_scheme_options_tokenRanges(
&self,
range: NSRange,
unit: NSLinguisticTaggerUnit,
scheme: &NSLinguisticTagScheme,
options: NSLinguisticTaggerOptions,
token_ranges: Option<&mut Option<Id<NSArray<NSValue>>>>,
) -> Id<NSArray<NSLinguisticTag>>;
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method(enumerateTagsInRange:scheme:options:usingBlock:)]
pub unsafe fn enumerateTagsInRange_scheme_options_usingBlock(
&self,
range: NSRange,
tag_scheme: &NSLinguisticTagScheme,
opts: NSLinguisticTaggerOptions,
block: &Block<(*mut NSLinguisticTag, NSRange, NSRange, NonNull<Bool>), ()>,
);
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other tagAtIndex:scheme:tokenRange:sentenceRange:)]
pub unsafe fn tagAtIndex_scheme_tokenRange_sentenceRange(
&self,
char_index: NSUInteger,
scheme: &NSLinguisticTagScheme,
token_range: NSRangePointer,
sentence_range: NSRangePointer,
) -> Option<Id<NSLinguisticTag>>;
#[cfg(all(
feature = "Foundation_NSArray",
feature = "Foundation_NSString",
feature = "Foundation_NSValue"
))]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other tagsInRange:scheme:options:tokenRanges:)]
pub unsafe fn tagsInRange_scheme_options_tokenRanges(
&self,
range: NSRange,
tag_scheme: &NSString,
opts: NSLinguisticTaggerOptions,
token_ranges: Option<&mut Option<Id<NSArray<NSValue>>>>,
) -> Id<NSArray<NSString>>;
#[cfg(feature = "Foundation_NSString")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other dominantLanguage)]
pub unsafe fn dominantLanguage(&self) -> Option<Id<NSString>>;
#[cfg(feature = "Foundation_NSString")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other dominantLanguageForString:)]
pub unsafe fn dominantLanguageForString(string: &NSString) -> Option<Id<NSString>>;
#[cfg(all(feature = "Foundation_NSOrthography", feature = "Foundation_NSString"))]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other tagForString:atIndex:unit:scheme:orthography:tokenRange:)]
pub unsafe fn tagForString_atIndex_unit_scheme_orthography_tokenRange(
string: &NSString,
char_index: NSUInteger,
unit: NSLinguisticTaggerUnit,
scheme: &NSLinguisticTagScheme,
orthography: Option<&NSOrthography>,
token_range: NSRangePointer,
) -> Option<Id<NSLinguisticTag>>;
#[cfg(all(
feature = "Foundation_NSArray",
feature = "Foundation_NSOrthography",
feature = "Foundation_NSString",
feature = "Foundation_NSValue"
))]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other tagsForString:range:unit:scheme:options:orthography:tokenRanges:)]
pub unsafe fn tagsForString_range_unit_scheme_options_orthography_tokenRanges(
string: &NSString,
range: NSRange,
unit: NSLinguisticTaggerUnit,
scheme: &NSLinguisticTagScheme,
options: NSLinguisticTaggerOptions,
orthography: Option<&NSOrthography>,
token_ranges: Option<&mut Option<Id<NSArray<NSValue>>>>,
) -> Id<NSArray<NSLinguisticTag>>;
#[cfg(all(feature = "Foundation_NSOrthography", feature = "Foundation_NSString"))]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method(enumerateTagsForString:range:unit:scheme:options:orthography:usingBlock:)]
pub unsafe fn enumerateTagsForString_range_unit_scheme_options_orthography_usingBlock(
string: &NSString,
range: NSRange,
unit: NSLinguisticTaggerUnit,
scheme: &NSLinguisticTagScheme,
options: NSLinguisticTaggerOptions,
orthography: Option<&NSOrthography>,
block: &Block<(*mut NSLinguisticTag, NSRange, NonNull<Bool>), ()>,
);
#[cfg(all(
feature = "Foundation_NSArray",
feature = "Foundation_NSString",
feature = "Foundation_NSValue"
))]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other possibleTagsAtIndex:scheme:tokenRange:sentenceRange:scores:)]
pub unsafe fn possibleTagsAtIndex_scheme_tokenRange_sentenceRange_scores(
&self,
char_index: NSUInteger,
tag_scheme: &NSString,
token_range: NSRangePointer,
sentence_range: NSRangePointer,
scores: Option<&mut Option<Id<NSArray<NSValue>>>>,
) -> Option<Id<NSArray<NSString>>>;
}
);
extern_methods!(
#[cfg(feature = "Foundation_NSLinguisticTagger")]
unsafe impl NSLinguisticTagger {
#[method_id(@__retain_semantics Init init)]
pub unsafe fn init(this: Allocated<Self>) -> Id<Self>;
#[method_id(@__retain_semantics New new)]
pub unsafe fn new() -> Id<Self>;
}
);
extern_methods!(
#[cfg(feature = "Foundation_NSString")]
unsafe impl NSString {
#[cfg(all(
feature = "Foundation_NSArray",
feature = "Foundation_NSOrthography",
feature = "Foundation_NSValue"
))]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method_id(@__retain_semantics Other linguisticTagsInRange:scheme:options:orthography:tokenRanges:)]
pub unsafe fn linguisticTagsInRange_scheme_options_orthography_tokenRanges(
&self,
range: NSRange,
scheme: &NSLinguisticTagScheme,
options: NSLinguisticTaggerOptions,
orthography: Option<&NSOrthography>,
token_ranges: Option<&mut Option<Id<NSArray<NSValue>>>>,
) -> Id<NSArray<NSLinguisticTag>>;
#[cfg(feature = "Foundation_NSOrthography")]
#[deprecated = "All NSLinguisticTagger API should be replaced with NaturalLanguage.framework API"]
#[method(enumerateLinguisticTagsInRange:scheme:options:orthography:usingBlock:)]
pub unsafe fn enumerateLinguisticTagsInRange_scheme_options_orthography_usingBlock(
&self,
range: NSRange,
scheme: &NSLinguisticTagScheme,
options: NSLinguisticTaggerOptions,
orthography: Option<&NSOrthography>,
block: &Block<(*mut NSLinguisticTag, NSRange, NSRange, NonNull<Bool>), ()>,
);
}
);