Enum DataElementType
- java.lang.Object
-
- java.lang.Enum<DataElementType>
-
- org.apache.tika.parser.microsoft.onenote.fsshttpb.streamobj.basic.DataElementType
-
- All Implemented Interfaces:
Serializable
,Comparable<DataElementType>
public enum DataElementType extends Enum<DataElementType>
The enumeration of the data element type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CellManifestDataElementData
Cell Manifest Data ElementFragmentDataElementData
Fragment Data ElementNone
None data element typeObjectDataBLOBDataElementData
Object Data BLOB Data ElementObjectGroupDataElementData
Object Group Data ElementRevisionManifestDataElementData
Revision Manifest Data ElementStorageIndexDataElementData
Storage Index Data ElementStorageManifestDataElementData
Storage Manifest Data Element
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DataElementType
fromIntVal(int intVal)
int
getIntVal()
static DataElementType
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataElementType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final DataElementType None
None data element type
-
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 nameNullPointerException
- if the argument is null
-
fromIntVal
public static DataElementType fromIntVal(int intVal)
-
getIntVal
public int getIntVal()
-
-