Enum VertexLabelsLineageGraph
- java.lang.Object
-
- java.lang.Enum<VertexLabelsLineageGraph>
-
- org.odpi.openmetadata.openconnectors.governancedaemonconnectors.openlineageconnectors.janusconnector.utils.VertexLabelsLineageGraph
-
- All Implemented Interfaces:
Serializable,Comparable<VertexLabelsLineageGraph>
public enum VertexLabelsLineageGraph extends Enum<VertexLabelsLineageGraph>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VertexLabelsLineageGraphvalueOf(String name)Returns the enum constant of this type with the specified name.static VertexLabelsLineageGraph[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GLOSSARY_TERM
public static final VertexLabelsLineageGraph GLOSSARY_TERM
-
RELATIONAL_COLUMN
public static final VertexLabelsLineageGraph RELATIONAL_COLUMN
-
RELATIONAL_TABLE_TYPE
public static final VertexLabelsLineageGraph RELATIONAL_TABLE_TYPE
-
RELATIONAL_TABLE
public static final VertexLabelsLineageGraph RELATIONAL_TABLE
-
RELATIONAL_DB_SCHEMA_TYPE
public static final VertexLabelsLineageGraph RELATIONAL_DB_SCHEMA_TYPE
-
DEPLOYED_DB_SCHEMA_TYPE
public static final VertexLabelsLineageGraph DEPLOYED_DB_SCHEMA_TYPE
-
DATABASE
public static final VertexLabelsLineageGraph DATABASE
-
CONNECTION
public static final VertexLabelsLineageGraph CONNECTION
-
ENDPOINT
public static final VertexLabelsLineageGraph ENDPOINT
-
PROCESS
public static final VertexLabelsLineageGraph PROCESS
-
PORT_ALIAS
public static final VertexLabelsLineageGraph PORT_ALIAS
-
PORT_IMPLEMENTATION
public static final VertexLabelsLineageGraph PORT_IMPLEMENTATION
-
TABULAR_SCHEMA_TYPE
public static final VertexLabelsLineageGraph TABULAR_SCHEMA_TYPE
-
TABULAR_COLUMN
public static final VertexLabelsLineageGraph TABULAR_COLUMN
-
TABULAR_COLUMN_TYPE
public static final VertexLabelsLineageGraph TABULAR_COLUMN_TYPE
-
FILE_FOLDER
public static final VertexLabelsLineageGraph FILE_FOLDER
-
NODE_LABEL_SUB_PROCESS
public static final VertexLabelsLineageGraph NODE_LABEL_SUB_PROCESS
-
ASSET_LINEAGE_VARIABLES
public static final VertexLabelsLineageGraph ASSET_LINEAGE_VARIABLES
-
-
Method Detail
-
values
public static VertexLabelsLineageGraph[] 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 (VertexLabelsLineageGraph c : VertexLabelsLineageGraph.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VertexLabelsLineageGraph 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
-
-