Enum EdgeLabelsLineageGraph
- java.lang.Object
-
- java.lang.Enum<EdgeLabelsLineageGraph>
-
- org.odpi.openmetadata.openconnectors.governancedaemonconnectors.openlineageconnectors.janusconnector.utils.EdgeLabelsLineageGraph
-
- All Implemented Interfaces:
Serializable,Comparable<EdgeLabelsLineageGraph>
public enum EdgeLabelsLineageGraph extends Enum<EdgeLabelsLineageGraph>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EdgeLabelsLineageGraphvalueOf(String name)Returns the enum constant of this type with the specified name.static EdgeLabelsLineageGraph[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEMANTIC_ASSIGNMENT
public static final EdgeLabelsLineageGraph SEMANTIC_ASSIGNMENT
-
PROCESS_PORT
public static final EdgeLabelsLineageGraph PROCESS_PORT
-
PORT_DELEGATION
public static final EdgeLabelsLineageGraph PORT_DELEGATION
-
PORT_SCHEMA
public static final EdgeLabelsLineageGraph PORT_SCHEMA
-
ATTRIBUTE_FOR_SCHEMA
public static final EdgeLabelsLineageGraph ATTRIBUTE_FOR_SCHEMA
-
SCHEMA_TYPE
public static final EdgeLabelsLineageGraph SCHEMA_TYPE
-
SCHEMA_ATTRIBUTE_TYPE
public static final EdgeLabelsLineageGraph SCHEMA_ATTRIBUTE_TYPE
-
LINEAGE_MAPPING
public static final EdgeLabelsLineageGraph LINEAGE_MAPPING
-
NESTED_FILE
public static final EdgeLabelsLineageGraph NESTED_FILE
-
FOLDER_HIERARCHY
public static final EdgeLabelsLineageGraph FOLDER_HIERARCHY
-
ASSET_TO_CONNECTION
public static final EdgeLabelsLineageGraph ASSET_TO_CONNECTION
-
ASSET_SCHEMA_TYPE
public static final EdgeLabelsLineageGraph ASSET_SCHEMA_TYPE
-
DATA_CONTENT_FOR_DATASET
public static final EdgeLabelsLineageGraph DATA_CONTENT_FOR_DATASET
-
INCLUDED_IN
public static final EdgeLabelsLineageGraph INCLUDED_IN
-
DATA_FLOW_WITH_PROCESS
public static final EdgeLabelsLineageGraph DATA_FLOW_WITH_PROCESS
-
-
Method Detail
-
values
public static EdgeLabelsLineageGraph[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EdgeLabelsLineageGraph c : EdgeLabelsLineageGraph.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EdgeLabelsLineageGraph valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-