public enum AssetType extends Enum<AssetType>
| Enum Constant and Description |
|---|
ALL
Represents all/any asset types.
|
ASSET
Represents general asset type.
|
CONFUSION_MATRIX
Represents confusion matrix asset type.
|
CURVE
Represents simple x/y curve.
|
DATAFRAME
Represents asset type for tabular data, including data, csv files, tsv files, and Pandas dataframes.
|
DATAFRAME_PROFILE
Represents asset type for a pandas DataFrame profile.
|
EMBEDDINGS
Represents asset type for the data structure holding embedding template info.
|
HISTOGRAM3D
Represents asset type for the histogram of values for a 3D chart.
|
MODEL_ELEMENT
Represents asset type for the NN model elements.
|
NOTEBOOK
Represents iPython, Jupyter or similar notebook asset.
|
POINTS_3D
Represents asset type for the 3d points and bounding boxes as an asset.
|
SOURCE_CODE
Represents source code asset.
|
TEXT_SAMPLE
Represents asset type for text samples.
|
UNKNOWN
Represents unknown asset type.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
String |
type()
Returns type of the asset as string.
|
static AssetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssetType ALL
public static final AssetType UNKNOWN
public static final AssetType ASSET
public static final AssetType SOURCE_CODE
public static final AssetType POINTS_3D
public static final AssetType EMBEDDINGS
public static final AssetType DATAFRAME
public static final AssetType DATAFRAME_PROFILE
public static final AssetType HISTOGRAM3D
public static final AssetType CONFUSION_MATRIX
public static final AssetType CURVE
public static final AssetType NOTEBOOK
public static final AssetType MODEL_ELEMENT
public static final AssetType TEXT_SAMPLE
public static AssetType[] values()
for (AssetType c : AssetType.values()) System.out.println(c);
public static AssetType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String type()
Copyright © 2022. All rights reserved.