%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php namespace Zxing\Common; use ReflectionClass; /** * A general enum implementation until we got SplEnum. */ final class AbstractEnum implements \Stringable { /** * Default value. * @var null */ public const __default = null; /** * Current value. * * @var mixed */ private $value; /** * Cache of constants. * * @var array<string, mixed>|null */ private ?array $constants = null; /** * Creates a new enum. * * @param mixed $initialValue * @param boolean $strict */ public function __construct($initialValue = null, private $strict = false) { $this->change($initialValue); } /** * Changes the value of the enum. * * @param mixed $value * * @return void */ public function change($value) { if (!in_array($value, $this->getConstList(), $this->strict)) { throw new \UnexpectedValueException('Value not a const in enum ' . $this::class); } $this->value = $value; } /** * Gets all constants (possible values) as an array. * * * @return array */ public function getConstList(bool $includeDefault = true) { $constants = []; if ($this->constants === null) { $reflection = new ReflectionClass($this); $this->constants = $reflection->getConstants(); } if ($includeDefault) { return $this->constants; } $constants = $this->constants; unset($constants['__default']); return $constants; } /** * Gets current value. * * @return mixed */ public function get() { return $this->value; } /** * Gets the name of the enum. * * @return string */ public function __toString(): string { return (string)array_search($this->value, $this->getConstList()); } }