public enum AnalysisAssetType extends java.lang.Enum<AnalysisAssetType>
This is an enumeration of all the types of assets that can be created.
Enum Constant and Description |
---|
PICTURE
This asset is a picture.
|
TABLE
This asset is a table of data organized into rows and columns.
|
VALUE
This asset is a single number.
|
Modifier and Type | Method and Description |
---|---|
static AnalysisAssetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnalysisAssetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnalysisAssetType PICTURE
This asset is a picture.
public static final AnalysisAssetType TABLE
This asset is a table of data organized into rows and columns.
public static final AnalysisAssetType VALUE
This asset is a single number.
public static AnalysisAssetType[] values()
for (AnalysisAssetType c : AnalysisAssetType.values()) System.out.println(c);
public static AnalysisAssetType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null