public enum AssetType extends Enum<AssetType>
| Enum Constant and Description |
|---|
ASSET_TYPE_3D_POINTS
Represents asset type for the 3d points and bounding boxes as an asset.
|
ASSET_TYPE_ALL
Represents all/any asset types.
|
ASSET_TYPE_ASSET
Represents general asset type.
|
ASSET_TYPE_CONFUSION_MATRIX
Represents confusion matrix asset type.
|
ASSET_TYPE_CURVE
Represents simple x/y curve.
|
ASSET_TYPE_DATAFRAME
Represents asset type for tabular data, including data, csv files, tsv files, and Pandas dataframes.
|
ASSET_TYPE_DATAFRAME_PROFILE
Represents asset type for a pandas DataFrame profile.
|
ASSET_TYPE_EMBEDDINGS
Represents asset type for the data structure holding embedding template info.
|
ASSET_TYPE_HISTOGRAM_3D
Represents asset type for the histogram of values for a 3D chart.
|
ASSET_TYPE_MODEL_ELEMENT
Represents asset type for the NN model elements.
|
ASSET_TYPE_NOTEBOOK
Represents iPython, Jupyter or similar notebook asset.
|
ASSET_TYPE_SOURCE_CODE
Represents source code asset.
|
ASSET_TYPE_TEXT_SAMPLE
Represents asset type for text samples.
|
ASSET_TYPE_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 ASSET_TYPE_ALL
public static final AssetType ASSET_TYPE_UNKNOWN
public static final AssetType ASSET_TYPE_ASSET
public static final AssetType ASSET_TYPE_SOURCE_CODE
public static final AssetType ASSET_TYPE_3D_POINTS
public static final AssetType ASSET_TYPE_EMBEDDINGS
public static final AssetType ASSET_TYPE_DATAFRAME
public static final AssetType ASSET_TYPE_DATAFRAME_PROFILE
public static final AssetType ASSET_TYPE_HISTOGRAM_3D
public static final AssetType ASSET_TYPE_CONFUSION_MATRIX
public static final AssetType ASSET_TYPE_CURVE
public static final AssetType ASSET_TYPE_NOTEBOOK
public static final AssetType ASSET_TYPE_MODEL_ELEMENT
public static final AssetType ASSET_TYPE_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 © 2021. All rights reserved.