ホーム › Globalization › UBreakIteratorType
UBreakIteratorType
列挙型メンバー 4
| 名前 | 10進 | 16進 |
|---|---|---|
| UBRK_CHARACTER | 0 | 0x0 |
| UBRK_WORD | 1 | 0x1 |
| UBRK_LINE | 2 | 0x2 |
| UBRK_SENTENCE | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum UBreakIteratorType : int {
UBRK_CHARACTER = 0,
UBRK_WORD = 1,
UBRK_LINE = 2,
UBRK_SENTENCE = 3
} UBreakIteratorType;public enum UBreakIteratorType : int
{
UBRK_CHARACTER = 0,
UBRK_WORD = 1,
UBRK_LINE = 2,
UBRK_SENTENCE = 3,
}Public Enum UBreakIteratorType As Integer
UBRK_CHARACTER = 0
UBRK_WORD = 1
UBRK_LINE = 2
UBRK_SENTENCE = 3
End Enumimport enum
class UBreakIteratorType(enum.IntEnum):
UBRK_CHARACTER = 0
UBRK_WORD = 1
UBRK_LINE = 2
UBRK_SENTENCE = 3// UBreakIteratorType
pub const UBRK_CHARACTER: i32 = 0;
pub const UBRK_WORD: i32 = 1;
pub const UBRK_LINE: i32 = 2;
pub const UBRK_SENTENCE: i32 = 3;// UBreakIteratorType
const (
UBRK_CHARACTER int32 = 0
UBRK_WORD int32 = 1
UBRK_LINE int32 = 2
UBRK_SENTENCE int32 = 3
)const
UBRK_CHARACTER = 0;
UBRK_WORD = 1;
UBRK_LINE = 2;
UBRK_SENTENCE = 3;// UBreakIteratorType
pub const UBRK_CHARACTER: i32 = 0;
pub const UBRK_WORD: i32 = 1;
pub const UBRK_LINE: i32 = 2;
pub const UBRK_SENTENCE: i32 = 3;const
UBRK_CHARACTER* = 0
UBRK_WORD* = 1
UBRK_LINE* = 2
UBRK_SENTENCE* = 3enum UBreakIteratorType : int {
UBRK_CHARACTER = 0,
UBRK_WORD = 1,
UBRK_LINE = 2,
UBRK_SENTENCE = 3,
}#define global UBRK_CHARACTER 0x0
#define global UBRK_WORD 0x1
#define global UBRK_LINE 0x2
#define global UBRK_SENTENCE 0x3