com.filenet.api.property
Interface PropertyBinaryList
-
- All Superinterfaces:
- Property, java.io.Serializable
public interface PropertyBinaryList extends Property
Represents a Content Engine property that holds aBinaryListobject. ABinaryListobject is a JavaListcollection (ordered, non-unique) ofbyte(8-bit signed integer) array elements, each of which is intended to hold a binary value.- See Also:
BinaryList
-
-
Method Summary
Methods Modifier and Type Method and Description voidsetValue(BinaryList val)Sets the value of this Content Engine property.-
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
-
setValue
void setValue(BinaryList val)
Sets the value of this Content Engine property.- Parameters:
val- ABinaryListobject that specifies the new property value.- Throws:
E_READ_ONLY- if an attempt is made to update a property that is not settable (itsProperty.isSettablemethod returnsfalse).
-
-