1<?php
2declare(strict_types=1);
3
4namespace PrinsFrank\PdfParser\Document\Dictionary\DictionaryParseContext;
5
6/** @internal */
7enum DictionaryParseContext {
8    case ROOT;
9    case DICTIONARY;
10    case KEY;
11    case KEY_VALUE_SEPARATOR;
12    case VALUE;
13    case VALUE_IN_PARENTHESES;
14    case VALUE_IN_SQUARE_BRACKETS;
15    case VALUE_IN_ANGLE_BRACKETS;
16    case COMMENT;
17}
18