com.grafana.foundation.common.VariableFormatID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grafana-foundation-sdk Show documentation
Show all versions of grafana-foundation-sdk Show documentation
A set of tools, types and libraries for building and manipulating Grafana objects.
// 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;
}
}