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 Enumeration PropertyState |
| C# |
|---|
public enum PropertyState |
| Visual C++ |
|---|
public enum class PropertyState |
| JavaScript |
|---|
FileNet.Api.Constants.PropertyState = function(); FileNet.Api.Constants.PropertyState.createEnum('FileNet.Api.Constants.PropertyState', false); |
Members
| Type | Member name | Description |
|---|---|---|
| VALUE |
Indicates that the Property object holds the value of the Content
Engine property that it represents.
| |
| NO_VALUE |
Indicates 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).
| |
| REFERENCE |
Indicates 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.
| |
| UNEVALUATED |
Indicates 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_ERROR |
Indicates that the Property object holds an
EngineRuntimeException object, which represents an error that
has occurred during retrieval of a Content Engine property value.
|