getStrict method
- String name
Get the property value matching the given name, using strict matching
Returns -1 if the name is unknown for this property
See the Rust documentation for get_strict
for more information.
Implementation
int getStrict(String name) {
final temp = _FinalizedArena();
final result = _icu4x_PropertyValueNameToEnumMapper_get_strict_mv1(_ffi, name._utf8AllocIn(temp.arena));
return result;
}