// generated by diplomat-tool import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** * See the [Rust documentation for `SentenceBreak`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SentenceBreak.html) for more information. */ export class SentenceBreak { /** @internal */ static fromValue(value: SentenceBreak | string): SentenceBreak; get value(): string; /** @internal */ get ffiValue(): number; static Other : SentenceBreak; static ATerm : SentenceBreak; static Close : SentenceBreak; static Format : SentenceBreak; static Lower : SentenceBreak; static Numeric : SentenceBreak; static OLetter : SentenceBreak; static Sep : SentenceBreak; static Sp : SentenceBreak; static STerm : SentenceBreak; static Upper : SentenceBreak; static Cr : SentenceBreak; static Extend : SentenceBreak; static Lf : SentenceBreak; static SContinue : SentenceBreak; /** * See the [Rust documentation for `for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.EnumeratedProperty.html#tymethod.for_char) for more information. */ static forChar(ch: codepoint): SentenceBreak; /** * Get the "long" name of this property value (returns empty if property value is unknown) * * See the [Rust documentation for `get`](https://docs.rs/icu/2.1.1/icu/properties/struct.PropertyNamesLongBorrowed.html#method.get) for more information. */ longName(): string | null; /** * Get the "short" name of this property value (returns empty if property value is unknown) * * See the [Rust documentation for `get`](https://docs.rs/icu/2.1.1/icu/properties/struct.PropertyNamesShortBorrowed.html#method.get) for more information. */ shortName(): string | null; /** * Convert to an integer value usable with ICU4C and CodePointMapData * * See the [Rust documentation for `to_icu4c_value`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SentenceBreak.html#method.to_icu4c_value) for more information. */ toIntegerValue(): number; /** * Convert from an integer value from ICU4C or CodePointMapData * * See the [Rust documentation for `from_icu4c_value`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SentenceBreak.html#method.from_icu4c_value) for more information. */ static fromIntegerValue(other: number): SentenceBreak | null; constructor(value: SentenceBreak | string ); }