com.filenet.api.engine
Enum StorageDeviceHandler.Capability
- java.lang.Object
-
- java.lang.Enum<StorageDeviceHandler.Capability>
-
- com.filenet.api.engine.StorageDeviceHandler.Capability
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<StorageDeviceHandler.Capability>
- Enclosing interface:
- StorageDeviceHandler
public static enum StorageDeviceHandler.Capability extends java.lang.Enum<StorageDeviceHandler.Capability>
The variable capabilities of the storage device. Refer to the description of themethod for details.StorageDeviceHandler.capabilitySupported(com.filenet.api.engine.StorageDeviceHandler.Capability)
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description DELETE_METHODQueries the most sophisticated form of secure delete supported by the device in terms of a member of theclass, where PURGE is considered superior to DESTRUCTIVE, which is turn superior to STANDARD.AreaDeleteMethodSYNCHRONOUS_REPLICATIONQueries the ability of the device type to support synchronous replication.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static StorageDeviceHandler.CapabilityvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static StorageDeviceHandler.Capability[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYNCHRONOUS_REPLICATION
public static final StorageDeviceHandler.Capability SYNCHRONOUS_REPLICATION
Queries the ability of the device type to support synchronous replication. In order to support synchronous replication the device must be capable of storing, retrieving and deleting content by means of caller-supplied identity information. If it can only retrieve and delete content via identity information generated by the device at time of creation the device can only be used as an asynchronous replica.If the device is able to support synchronous replication the
method call for this capability should return 1. Otherwise return 0.capabilitySupported
-
DELETE_METHOD
public static final StorageDeviceHandler.Capability DELETE_METHOD
Queries the most sophisticated form of secure delete supported by the device in terms of a member of theclass, where PURGE is considered superior to DESTRUCTIVE, which is turn superior to STANDARD.AreaDeleteMethodThe
method call for this capability should should return the _AS_INT value of the appropriate class member.capabilitySupported
-
-
Method Detail
-
values
public static StorageDeviceHandler.Capability[] 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 (StorageDeviceHandler.Capability c : StorageDeviceHandler.Capability.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StorageDeviceHandler.Capability 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 namejava.lang.NullPointerException- if the argument is null
-
-