File: IntlBreakIterator.xml

package info (click to toggle)
phpdox 0.12.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 7,672 kB
  • sloc: xml: 80,724; php: 9,167; makefile: 13
file content (249 lines) | stat: -rw-r--r-- 9,332 bytes parent folder | download | duplicates (2)
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="IntlBreakIterator" namespace="" name="IntlBreakIterator">
  <implements name="Traversable" full="Traversable"/>
  <constant name="DONE" value="-1">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_NONE" value="0">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_NONE_LIMIT" value="100">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_NUMBER" value="100">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_NUMBER_LIMIT" value="200">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_LETTER" value="200">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_LETTER_LIMIT" value="300">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_KANA" value="300">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_KANA_LIMIT" value="400">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_IDEO" value="400">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="WORD_IDEO_LIMIT" value="500">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="LINE_SOFT" value="0">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="LINE_SOFT_LIMIT" value="100">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="LINE_HARD" value="100">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="LINE_HARD_LIMIT" value="200">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="SENTENCE_TERM" value="0">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="SENTENCE_TERM_LIMIT" value="100">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="SENTENCE_SEP" value="100">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constant name="SENTENCE_SEP_LIMIT" value="200">
    <docblock>
      <var type="integer"/>
    </docblock>
  </constant>
  <constructor name="__construct" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Private constructor for disallowing instantiation"/>
      <return type="void"/>
    </docblock>
  </constructor>
  <method name="createCharacterInstance" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="&#10;   Create break iterator for boundaries of combining character sequences&#10;  "/>
      <return type="IntlBreakIterator"/>
    </docblock>
    <parameter name="locale" optional="true" byreference="false" type="string"/>
  </method>
  <method name="createCodePointInstance" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Create break iterator for boundaries of code points"/>
      <return type="IntlBreakIterator"/>
    </docblock>
  </method>
  <method name="createLineInstance" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="&#10;   Create break iterator for logically possible line breaks&#10;  "/>
      <return type="IntlBreakIterator"/>
    </docblock>
    <parameter name="locale" optional="true" byreference="false" type="string"/>
  </method>
  <method name="createSentenceInstance" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Create break iterator for sentence breaks"/>
      <return type="IntlBreakIterator"/>
    </docblock>
    <parameter name="locale" optional="true" byreference="false" type="string"/>
  </method>
  <method name="createTitleInstance" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Create break iterator for title-casing breaks"/>
      <return type="IntlBreakIterator"/>
    </docblock>
    <parameter name="locale" optional="true" byreference="false" type="string"/>
  </method>
  <method name="createWordInstance" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Create break iterator for word breaks"/>
      <return type="IntlBreakIterator"/>
    </docblock>
    <parameter name="locale" optional="true" byreference="false" type="string"/>
  </method>
  <method name="current" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Get index of current position"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="first" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Set position to the first character in the text"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="following" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="&#10;   Advance the iterator to the first boundary following specified offset&#10;  "/>
      <return type="int"/>
    </docblock>
    <parameter name="offset" optional="false" byreference="false" type="int"/>
  </method>
  <method name="getErrorCode" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Get last error code on the object">Object oriented style (method):</description>
      <return type="int"/>
    </docblock>
  </method>
  <method name="" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Get last error code on the object">Object oriented style (method):</description>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getErrorMessage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Get last error message on the object">Object oriented style (method):</description>
      <return type="string"/>
    </docblock>
  </method>
  <method name="" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Get last error message on the object">Object oriented style (method):</description>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getLocale" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Get the locale associated with the object"/>
      <return type="string"/>
    </docblock>
    <parameter name="locale_type" optional="false" byreference="false" type="string"/>
  </method>
  <method name="getPartsIterator" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Create iterator for navigating fragments between boundaries"/>
      <return type="IntlPartsIterator"/>
    </docblock>
    <parameter name="key_type" optional="true" byreference="false" type="int"/>
  </method>
  <method name="getText" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Get the text being scanned"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="isBoundary" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Tell whether an offset is a boundary&#x2BC;s offset"/>
      <return type="bool"/>
    </docblock>
    <parameter name="offset" optional="false" byreference="false" type="int"/>
  </method>
  <method name="last" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Set the iterator position to index beyond the last character"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="next" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Advance the iterator the next boundary"/>
      <return type="int"/>
    </docblock>
    <parameter name="offset" optional="true" byreference="false" type="int"/>
  </method>
  <method name="preceding" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Set the iterator position to the first boundary before an offset"/>
      <return type="int"/>
    </docblock>
    <parameter name="offset" optional="false" byreference="false" type="int"/>
  </method>
  <method name="previous" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Set the iterator position to the boundary immediately before the current"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="setText" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Set the text being scanned"/>
      <return type="bool"/>
    </docblock>
    <parameter name="text" optional="false" byreference="false" type="string"/>
  </method>
</class>