| Package | Description |
|---|---|
| org.magicwerk.brownies.collections |
This packages contains collections extending the Java Collections Framework.
|
| Modifier and Type | Method and Description |
|---|---|
MapList.Builder<E,K> |
MapList.Builder.withAttachHandler(org.magicwerk.brownies.collections.KeyList.Handler<E> handler) |
MapList.Builder<E,K> |
MapList.Builder.withComparator(java.util.Comparator<K> comparator) |
MapList.Builder<E,K> |
MapList.Builder.withComparator(java.util.Comparator<K> comparator,
boolean comparatorSortsNull) |
MapList.Builder<E,K> |
MapList.Builder.withDetachHandler(org.magicwerk.brownies.collections.KeyList.Handler<E> handler) |
MapList.Builder<E,K> |
MapList.Builder.withDuplicates(org.magicwerk.brownies.collections.KeyList.DuplicateMode duplicateMode) |
MapList.Builder<E,K> |
MapList.Builder.withMapper(Mapper<E,K> mapper)
Note that a mapper must be set to construct a MapList.
|
MapList.Builder<E,K> |
MapList.Builder.withNullElem()
Determines that null elements are allowed.
|
MapList.Builder<E,K> |
MapList.Builder.withNullElem(boolean nullElem)
Determines whether null elements are allowed or not.
|
MapList.Builder<E,K> |
MapList.Builder.withNullKey() |
MapList.Builder<E,K> |
MapList.Builder.withNullKey(boolean nullKey)
Determines whether null keys are allowed or not.
|
MapList.Builder<E,K> |
MapList.Builder.withNullsFirst()
Nulls will be sorted first.
|
MapList.Builder<E,K> |
MapList.Builder.withNullsFirst(boolean nullsFirst)
Specifies whether nulls will be sorted first.
|
MapList.Builder<E,K> |
MapList.Builder.withSort() |
MapList.Builder<E,K> |
MapList.Builder.withSort(boolean sort) |