com.gemstone.gemfire.cache.query.types
Interface CollectionType
- All Superinterfaces:
- DataSerializable, ObjectType, Serializable
- All Known Subinterfaces:
- MapType
public interface CollectionType
- extends ObjectType
Represents the type of a collection, an object that can contain element
objects.
- Since:
- 4.0
|
Method Summary |
boolean |
allowsDuplicates()
Return whether duplicates are kept in this type of collection. |
ObjectType |
getElementType()
Return the type of the elements of this collection type. |
boolean |
isOrdered()
Return whether this collection type has ordered elements. |
getElementType
ObjectType getElementType()
- Return the type of the elements of this collection type.
allowsDuplicates
boolean allowsDuplicates()
- Return whether duplicates are kept in this type of collection. Duplicates
are two objects are equal to each other as defined by the
equals
method.
- Returns:
- true if duplicates have been retained, false if duplicates have
been eliminated
isOrdered
boolean isOrdered()
- Return whether this collection type has ordered elements.
- Returns:
- true if this collection type is ordered, false if not
Copyright © 2002-2008 GemStone Systems, Inc. All Rights Reserved.