All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.grafana.foundation.common.VariableFormatID Maven / Gradle / Ivy

There is a newer version: 11.3.0-1730898216
Show newest version
// Code generated - EDITING IS FUTILE. DO NOT EDIT.

package com.grafana.foundation.common;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonValue;


// Optional formats for the template variable replace functions
// See also https://grafana.com/docs/grafana/latest/dashboards/variables/variable-syntax/#advanced-variable-format-options
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum VariableFormatID {
    LUCENE("lucene"),
    RAW("raw"),
    REGEX("regex"),
    PIPE("pipe"),
    DISTRIBUTED("distributed"),
    CSV("csv"),
    HTML("html"),
    JSON("json"),
    PERCENT_ENCODE("percentencode"),
    URI_ENCODE("uriencode"),
    SINGLE_QUOTE("singlequote"),
    DOUBLE_QUOTE("doublequote"),
    SQL_STRING("sqlstring"),
    DATE("date"),
    GLOB("glob"),
    TEXT("text"),
    QUERY_PARAM("queryparam"),
    _EMPTY("");

    private final String value;

    private VariableFormatID(String value) {
        this.value = value;
    }

    @JsonValue
    public String Value() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy