Enum DataEntityType
- java.lang.Object
-
- java.lang.Enum<DataEntityType>
-
- org.opendatadiscovery.client.model.DataEntityType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DataEntityType>
public enum DataEntityType extends java.lang.Enum<DataEntityType>
Gets or Sets DataEntityType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description API_CALLAPI_SERVICEDAGDASHBOARDDATABASE_SERVICEFEATURE_GROUPFILEGRAPH_NODEJOBJOB_RUNKAFKA_SERVICEKAFKA_TOPICMICROSERVICEML_EXPERIMENTML_MODELML_MODEL_TRAININGTABLEUNKNOWNVIEW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataEntityTypefromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()static DataEntityTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DataEntityType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TABLE
public static final DataEntityType TABLE
-
VIEW
public static final DataEntityType VIEW
-
FILE
public static final DataEntityType FILE
-
FEATURE_GROUP
public static final DataEntityType FEATURE_GROUP
-
KAFKA_TOPIC
public static final DataEntityType KAFKA_TOPIC
-
JOB
public static final DataEntityType JOB
-
JOB_RUN
public static final DataEntityType JOB_RUN
-
ML_MODEL
public static final DataEntityType ML_MODEL
-
ML_MODEL_TRAINING
public static final DataEntityType ML_MODEL_TRAINING
-
DASHBOARD
public static final DataEntityType DASHBOARD
-
DAG
public static final DataEntityType DAG
-
ML_EXPERIMENT
public static final DataEntityType ML_EXPERIMENT
-
GRAPH_NODE
public static final DataEntityType GRAPH_NODE
-
UNKNOWN
public static final DataEntityType UNKNOWN
-
MICROSERVICE
public static final DataEntityType MICROSERVICE
-
API_CALL
public static final DataEntityType API_CALL
-
DATABASE_SERVICE
public static final DataEntityType DATABASE_SERVICE
-
API_SERVICE
public static final DataEntityType API_SERVICE
-
KAFKA_SERVICE
public static final DataEntityType KAFKA_SERVICE
-
-
Method Detail
-
values
public static DataEntityType[] 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 (DataEntityType c : DataEntityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataEntityType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<DataEntityType>
-
fromValue
public static DataEntityType fromValue(java.lang.String value)
-
-