Skip to content

PromQueryFormat🔗

Definition🔗

final class PromQueryFormat implements \JsonSerializable, \Stringable {
    /**
     * @var string
     */
    private $value;

    /**
     * @var array<string, PromQueryFormat>
     */
    private static $instances = [];

    private function __construct(string $value)
    {
        $this->value = $value;
    }

    public static function timeSeries(): self
    {
        if (!isset(self::$instances["time_series"])) {
            self::$instances["time_series"] = new self("time_series");
        }

        return self::$instances["time_series"];
    }

    public static function table(): self
    {
        if (!isset(self::$instances["table"])) {
            self::$instances["table"] = new self("table");
        }

        return self::$instances["table"];
    }

    public static function heatmap(): self
    {
        if (!isset(self::$instances["heatmap"])) {
            self::$instances["heatmap"] = new self("heatmap");
        }

        return self::$instances["heatmap"];
    }

    public static function fromValue(string $value): self
    {
        if ($value === "time_series") {
            return self::timeSeries();
        }

        if ($value === "table") {
            return self::table();
        }

        if ($value === "heatmap") {
            return self::heatmap();
        }

        throw new \UnexpectedValueException("Value '$value' is not part of the enum PromQueryFormat");
    }

    public function jsonSerialize(): string
    {
        return $this->value;
    }

    public function __toString(): string
    {
        return $this->value;
    }
}