com.yahoo.elide.modelconfig.model.Dimension Maven / Gradle / Ivy
/*
* Copyright 2020, Yahoo Inc.
* Licensed under the Apache License, Version 2.0
* See LICENSE file in project root for terms.
*/
package com.yahoo.elide.modelconfig.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;
import lombok.Singular;
import java.util.ArrayList;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
/**
* Dimensions represent labels for measures.
* Dimensions are used to filter and group measures.
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"name",
"friendlyName",
"description",
"category",
"hidden",
"readAccess",
"definition",
"cardinality",
"type",
"grains",
"tags",
"arguments",
"values",
"tableSource",
"filterTemplate"
})
@Data
@EqualsAndHashCode()
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class Dimension implements Named {
private static final long serialVersionUID = 7886036651874169795L;
@JsonProperty("name")
private String name;
@JsonProperty("friendlyName")
private String friendlyName;
@JsonProperty("description")
private String description;
@JsonProperty("category")
private String category;
@JsonProperty("hidden")
@Builder.Default
private Boolean hidden = false;
@JsonProperty("readAccess")
@Builder.Default
private String readAccess = "Prefab.Role.All";
@JsonProperty("definition")
private String definition;
@JsonProperty("cardinality")
private String cardinality;
@JsonProperty("type")
private String type;
@JsonProperty("grains")
@Singular
private List grains = new ArrayList<>();
@JsonProperty("tags")
@JsonDeserialize(as = LinkedHashSet.class)
private Set tags = new LinkedHashSet<>();
@JsonProperty("arguments")
@Singular
private List arguments = new ArrayList<>();
@JsonProperty("values")
@JsonDeserialize(as = LinkedHashSet.class)
private Set values = new LinkedHashSet<>();
@JsonProperty("tableSource")
private TableSource tableSource;
@JsonProperty("filterTemplate")
private String filterTemplate;
/**
* Returns description of the dimension.
* If null, returns the name.
* @return description
*/
public String getDescription() {
return (this.description == null ? getName() : this.description);
}
/**
* Checks if this dimension has provided argument.
* @param argName Name of the {@link Argument} to check for.
* @return true if this dimension has provided argument.
*/
public boolean hasArgument(String argName) {
return hasName(this.arguments, argName);
}
}