Enum AssetType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<AssetType>

    public enum AssetType
    extends java.lang.Enum<AssetType>
    Asset types represented as TileDB arrays
    • Enum Constant Detail

      • NOTEBOOK

        public static final AssetType NOTEBOOK
      • DASHBOARD

        public static final AssetType DASHBOARD
      • USER_DEFINED_FUNCTION

        public static final AssetType USER_DEFINED_FUNCTION
      • ML_MODEL

        public static final AssetType ML_MODEL
      • REGISTERED_TASK_GRAPH

        public static final AssetType REGISTERED_TASK_GRAPH
      • POINTCLOUD

        public static final AssetType POINTCLOUD
      • BIOIMG

        public static final AssetType BIOIMG
      • GEOMETRY

        public static final AssetType GEOMETRY
      • RASTER

        public static final AssetType RASTER
      • VECTOR_SEARCH

        public static final AssetType VECTOR_SEARCH
    • Method Detail

      • values

        public static AssetType[] 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 (AssetType c : AssetType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AssetType 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 name
        java.lang.NullPointerException - if the argument is null
      • getValue

        public java.lang.String getValue()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<AssetType>
      • fromValue

        public static AssetType fromValue​(java.lang.String value)