Provides a set of constants that indicates the type of value held by a Property object as it relates to a given Content Engine property.


Namespace: FileNet.Api.Constants
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Enum PropertyState
C#
public enum PropertyState
C++
public enum class PropertyState
J#
public enum PropertyState
JScript
public enum PropertyState

Members

Member NameDescription
VALUEIndicates that the Property object holds the value of the Content Engine property that it represents.
NO_VALUEIndicates that the Content Engine property represented by the Property object is either Null (if it has single cardinality), or refers to an empty collection (if it has list or enumeration cardinality).
REFERENCEIndicates that the Property object holds an ObjectReference object specifying a reference to the object returned by an object-valued Content Engine property. The object reference contains information that identifies the object but does not contain the object itself.
UNEVALUATEDIndicates that the Property object represents an object-valued Content Engine property, but does not hold its object value and does not have any information identifying the object.
RETRIEVAL_ERRORIndicates that the Property object holds an EngineRuntimeException object, which represents an error that has occurred during retrieval of a Content Engine property value.

See Also