com.filenet.api.property
Interface PropertyIndependentObjectSet
-
- All Superinterfaces:
- Property, java.io.Serializable
public interface PropertyIndependentObjectSet extends Property
Represents a Content Engine property that holds anIndependentObjectSetobject. AnIndependentObjectSetobject is a JavaSetcollection (unordered, unique) ofIndependentObjectobjects.- See Also:
IndependentObjectSet
-
-
Method Summary
Methods Modifier and Type Method and Description IndependentObjectSetfetchIndependentObjectSetValue(PropertyFilter filter)Retrieves the value of thisPropertyIndependentObjectSetproperty by making a roundtrip to the server using an optional property filter.IndependentObjectSetfetchIndependentObjectSetValue(PropertyFilter filter, int pageSize)Retrieves the value of thisPropertyIndependentObjectSetproperty by making a roundtrip to the server using an optional property filter and page size.-
Methods inherited from interface com.filenet.api.property.Property
getBinaryListValue, getBinaryValue, getBooleanListValue, getBooleanValue, getDateTimeListValue, getDateTimeValue, getDependentObjectListValue, getEngineObjectValue, getFloat64ListValue, getFloat64Value, getIdListValue, getIdValue, getIndependentObjectSetValue, getInputStreamValue, getInteger32ListValue, getInteger32Value, getObjectValue, getPropertyName, getRetrievalErrorValue, getState, getStringListValue, getStringValue, isDirty, isSettable, setObjectValue
-
-
-
-
Method Detail
-
fetchIndependentObjectSetValue
IndependentObjectSet fetchIndependentObjectSetValue(PropertyFilter filter)
Retrieves the value of thisPropertyIndependentObjectSetproperty by making a roundtrip to the server using an optional property filter.- Parameters:
filter- APropertyFilterobject that represents information for controlling which property values (and with what level of detail and recursion) to return. Ifnull, this method returns values for all non-object properties and returns placeholders for all object-valued properties (PropertyEngineObjectproperties with a state ofPropertyState.UNEVALUATEDorPropertyState.REFERENCE); any subsequent attempts to access an object-valued property will cause an automatic round-trip to the server to fetch its value.- Returns:
- An
IndependentObjectSetobject.
-
fetchIndependentObjectSetValue
IndependentObjectSet fetchIndependentObjectSetValue(PropertyFilter filter, int pageSize)
Retrieves the value of thisPropertyIndependentObjectSetproperty by making a roundtrip to the server using an optional property filter and page size.- Parameters:
filter- APropertyFilterobject that represents information for controlling which property values (and with what level of detail and recursion) to return. Ifnull, this method returns values for all non-object properties and returns placeholders for all object-valued properties (PropertyEngineObjectproperties with a state ofPropertyState.UNEVALUATEDorPropertyState.REFERENCE); any subsequent attempts to access an object-valued property will cause an automatic round-trip to the server to fetch its value.pageSize- Anintspecifying the number of elements to fetch from the collection at a time.- Returns:
- An
IndependentObjectSetobject.
-
-