1<?php
2
3/** @generate-class-entries */
4
5/** @not-serializable */
6class IntlPartsIterator extends IntlIterator
7{
8    /** @cvalue PARTS_ITERATOR_KEY_SEQUENTIAL */
9    public const int KEY_SEQUENTIAL = UNKNOWN;
10    /** @cvalue PARTS_ITERATOR_KEY_LEFT */
11    public const int KEY_LEFT = UNKNOWN;
12    /** @cvalue PARTS_ITERATOR_KEY_RIGHT */
13    public const int KEY_RIGHT = UNKNOWN;
14
15    /** @tentative-return-type */
16    public function getBreakIterator(): IntlBreakIterator {}
17
18    /** @tentative-return-type */
19    public function getRuleStatus(): int {}
20}
21