FileNet Content Services
Java Connector v3.0

com.filenet.wcm.api
Interface Values

All Superinterfaces:
java.util.Collection, java.util.List, java.io.Serializable, ValueObject

public interface Values
extends java.util.List, ValueObject, java.io.Serializable

A Values collection is a collection of Value objects for a multi-valued property. Each Value object in the collection is of the same type (you cannot have a multi-valued property consisting of heterogeneous data types).

To get the values for a multi-valued property:

To set the values for a multi-valued property:

  1. Create an empty Values collection using the ObjectFactory's getValues method.
  2. Use the ObjectFactory's getValue method to create the Value objects for populating the collection.
  3. Pass the populated ValueObject'sobject into a Property object's setValue(ValueObject objectValue) method or into a Value object's setValue(ValueObject objectValue) method.

See Also:
CS Java Connector Developer's Guide

Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArray
 


FileNet Content Services
Java Connector v3.0