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

org.openmetadata.schema.api.lineage.LineageLayer Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version

package org.openmetadata.schema.api.lineage;

import java.util.HashMap;
import java.util.Map;
import javax.annotation.processing.Generated;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;


/**
 * Lineage Layers
 * 
 */
@Generated("jsonschema2pojo")
public enum LineageLayer {

    ENTITY_LINEAGE("EntityLineage"),
    COLUMN_LEVEL_LINEAGE("ColumnLevelLineage"),
    DATA_OBSERVABILITY("DataObservability");
    private final String value;
    private final static Map CONSTANTS = new HashMap();

    static {
        for (LineageLayer c: values()) {
            CONSTANTS.put(c.value, c);
        }
    }

    LineageLayer(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return this.value;
    }

    @JsonValue
    public String value() {
        return this.value;
    }

    @JsonCreator
    public static LineageLayer fromValue(String value) {
        LineageLayer constant = CONSTANTS.get(value);
        if (constant == null) {
            throw new IllegalArgumentException(value);
        } else {
            return constant;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy