Skip to content

NodesQueryType🔗

Definition🔗

package com.grafana.foundation.testdata.NodesQueryType;

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


@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum NodesQueryType {
    RANDOM("random"),
    RANDOM_EDGES("random edges"),
    RESPONSE_MEDIUM("response_medium"),
    RESPONSE_SMALL("response_small"),
    FEATURE_SHOWCASE("feature_showcase"),
    _EMPTY("");

    private final String value;

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

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