Package com.documentum.fc.client
Interface IDfSeekRoot
public interface IDfSeekRoot
Constants for specifying the root location of a
IDfContentCollection.seek(int, int)
operation.- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Specifies that the seek position is relative to the beginning of the content.static final int
Specifies that the seek position is relative to the current location in the content.static final int
Specifies that the seek position is relative to the end of the content.
-
Field Details
-
BEGINNING
static final int BEGINNINGSpecifies that the seek position is relative to the beginning of the content. The associated position must be positive. -
CURRENT
static final int CURRENTSpecifies that the seek position is relative to the current location in the content. The associated position can be either positive or negative. -
END
static final int ENDSpecifies that the seek position is relative to the end of the content. The associated position must be negative.
-