namespace icu4x { /** *Seethe[Rustdocumentationfor`SentenceBreak`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SentenceBreak.html) for more information.
*/ class SentenceBreak {
public: enum Value {
Other = 0,
ATerm = 1,
Close = 2,
Format = 3,
Lower = 4,
Numeric = 5,
OLetter = 6,
Sep = 7,
Sp = 8,
STerm = 9,
Upper = 10,
CR = 11,
Extend = 12,
LF = 13,
SContinue = 14,
};
SentenceBreak(): value(Value::Other) {}
// Implicit conversions between enum and ::Value
constexpr SentenceBreak(Value v) : value(v) {}
constexpr operator Value() const { return value; } // Prevent usage as boolean value explicitoperatorbool() const = delete;
/** *Seethe[Rustdocumentationfor`for_char`](https://docs.rs/icu/2.1.1/icu/properties/props/trait.EnumeratedProperty.html#tymethod.for_char) for more information.
*/ inlinestatic icu4x::SentenceBreak for_char(char32_t ch);
/** *Getthe"long"nameofthispropertyvalue(returnsemptyifpropertyvalueisunknown) * *Seethe[Rustdocumentationfor`get`](https://docs.rs/icu/2.1.1/icu/properties/struct.PropertyNamesLongBorrowed.html#method.get) for more information.
*/ inline std::optional<std::string_view> long_name() const;
/** *Getthe"short"nameofthispropertyvalue(returnsemptyifpropertyvalueisunknown) * *Seethe[Rustdocumentationfor`get`](https://docs.rs/icu/2.1.1/icu/properties/struct.PropertyNamesShortBorrowed.html#method.get) for more information.
*/ inline std::optional<std::string_view> short_name() const;
/** *ConverttoanintegervalueusablewithICU4CandCodePointMapData * *Seethe[Rustdocumentationfor`to_icu4c_value`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SentenceBreak.html#method.to_icu4c_value) for more information.
*/ inline uint8_t to_integer_value() const;
/** *ConvertfromanintegervaluefromICU4CorCodePointMapData * *Seethe[Rustdocumentationfor`from_icu4c_value`](https://docs.rs/icu/2.1.1/icu/properties/props/struct.SentenceBreak.html#method.from_icu4c_value) for more information.
*/ inlinestatic std::optional<icu4x::SentenceBreak> from_integer_value(uint8_t other);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.