1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
* Copyright (C) 2015, International Business Machines Corporation
* and others. All Rights Reserved.
*******************************************************************************
* standardplural.h
*
* created on: 2015dec14
* created by: Markus W. Scherer
*/
#ifndef __STANDARDPLURAL_H__
#define __STANDARDPLURAL_H__
#include <_foundation_unicode/utypes.h>
#if !UCONFIG_NO_FORMATTING
U_NAMESPACE_BEGIN
class UnicodeString;
/**
* Standard CLDR plural form/category constants.
* See http://www.unicode.org/reports/tr35/tr35-numbers.html#Language_Plural_Rules
*/
class U_I18N_API StandardPlural {
public:
enum Form {
ZERO,
ONE,
TWO,
FEW,
MANY,
OTHER,
EQ_0,
EQ_1,
COUNT
};
/**
* @return the lowercase CLDR keyword string for the plural form
*/
static const char *getKeyword(Form p);
/**
* @param keyword for example "few" or "other"
* @return the plural form corresponding to the keyword, or OTHER
*/
static Form orOtherFromString(const char *keyword) {
return static_cast<Form>(indexOrOtherIndexFromString(keyword));
}
/**
* @param keyword for example "few" or "other"
* @return the plural form corresponding to the keyword, or OTHER
*/
static Form orOtherFromString(const UnicodeString &keyword) {
return static_cast<Form>(indexOrOtherIndexFromString(keyword));
}
/**
* Sets U_ILLEGAL_ARGUMENT_ERROR if the keyword is not a plural form.
*
* @param keyword for example "few" or "other"
* @return the plural form corresponding to the keyword
*/
static Form fromString(const char *keyword, UErrorCode &errorCode) {
return static_cast<Form>(indexFromString(keyword, errorCode));
}
/**
* Sets U_ILLEGAL_ARGUMENT_ERROR if the keyword is not a plural form.
*
* @param keyword for example "few" or "other"
* @return the plural form corresponding to the keyword
*/
static Form fromString(const UnicodeString &keyword, UErrorCode &errorCode) {
return static_cast<Form>(indexFromString(keyword, errorCode));
}
/**
* @param keyword for example "few" or "other"
* @return the index of the plural form corresponding to the keyword, or a negative value
*/
static int32_t indexOrNegativeFromString(const char *keyword);
/**
* @param keyword for example "few" or "other"
* @return the index of the plural form corresponding to the keyword, or a negative value
*/
static int32_t indexOrNegativeFromString(const UnicodeString &keyword);
/**
* @param keyword for example "few" or "other"
* @return the index of the plural form corresponding to the keyword, or OTHER
*/
static int32_t indexOrOtherIndexFromString(const char *keyword) {
int32_t i = indexOrNegativeFromString(keyword);
return i >= 0 ? i : OTHER;
}
/**
* @param keyword for example "few" or "other"
* @return the index of the plural form corresponding to the keyword, or OTHER
*/
static int32_t indexOrOtherIndexFromString(const UnicodeString &keyword) {
int32_t i = indexOrNegativeFromString(keyword);
return i >= 0 ? i : OTHER;
}
/**
* Sets U_ILLEGAL_ARGUMENT_ERROR if the keyword is not a plural form.
*
* @param keyword for example "few" or "other"
* @return the index of the plural form corresponding to the keyword
*/
static int32_t indexFromString(const char *keyword, UErrorCode &errorCode);
/**
* Sets U_ILLEGAL_ARGUMENT_ERROR if the keyword is not a plural form.
*
* @param keyword for example "few" or "other"
* @return the index of the plural form corresponding to the keyword
*/
static int32_t indexFromString(const UnicodeString &keyword, UErrorCode &errorCode);
};
U_NAMESPACE_END
#endif // !UCONFIG_NO_FORMATTING
#endif // __STANDARDPLURAL_H__
|