Enum DataElementType

    • Enum Constant Detail

      • StorageIndexDataElementData

        public static final DataElementType StorageIndexDataElementData
        Storage Index Data Element
      • StorageManifestDataElementData

        public static final DataElementType StorageManifestDataElementData
        Storage Manifest Data Element
      • CellManifestDataElementData

        public static final DataElementType CellManifestDataElementData
        Cell Manifest Data Element
      • RevisionManifestDataElementData

        public static final DataElementType RevisionManifestDataElementData
        Revision Manifest Data Element
      • ObjectGroupDataElementData

        public static final DataElementType ObjectGroupDataElementData
        Object Group Data Element
      • FragmentDataElementData

        public static final DataElementType FragmentDataElementData
        Fragment Data Element
      • ObjectDataBLOBDataElementData

        public static final DataElementType ObjectDataBLOBDataElementData
        Object Data BLOB Data Element
    • Method Detail

      • values

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

        public static DataElementType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getIntVal

        public int getIntVal()