Uses of Class
org.magicwerk.brownies.collections.KeyCollection.Builder
-
Packages that use KeyCollection.Builder Package Description org.magicwerk.brownies.collections Brownies Collections complements the Java Collections Framework. -
-
Uses of KeyCollection.Builder in org.magicwerk.brownies.collections
Subclasses of KeyCollection.Builder in org.magicwerk.brownies.collections Modifier and Type Class Description static class
KeySet.Builder<E>
Builder to construct KeySet instances.Methods in org.magicwerk.brownies.collections that return KeyCollection.Builder Modifier and Type Method Description protected KeyCollection.Builder<E>
KeyCollection. getBuilder()
KeyCollection.Builder<E>
KeyCollection.Builder. withAfterDeleteTrigger(java.util.function.Consumer<E> trigger)
KeyCollection.Builder<E>
KeyCollection.Builder. withAfterInsertTrigger(java.util.function.Consumer<E> trigger)
KeyCollection.Builder<E>
KeyCollection.Builder. withBeforeDeleteTrigger(java.util.function.Consumer<E> trigger)
KeyCollection.Builder<E>
KeyCollection.Builder. withBeforeInsertTrigger(java.util.function.Consumer<E> trigger)
KeyCollection.Builder<E>
KeyCollection.Builder. withCapacity(int capacity)
KeyCollection.Builder<E>
KeyCollection.Builder. withConstraint(java.util.function.Predicate<E> constraint)
KeyCollection.Builder<E>
KeyCollection.Builder. withContent(E... elements)
KeyCollection.Builder<E>
KeyCollection.Builder. withContent(java.util.Collection<? extends E> elements)
KeyCollection.Builder<E>
KeyCollection.Builder. withElemCount(boolean count)
KeyCollection.Builder<E>
KeyCollection.Builder. withElemDuplicates(boolean allowDuplicates)
KeyCollection.Builder<E>
KeyCollection.Builder. withElemDuplicates(boolean allowDuplicates, boolean allowDuplicatesNull)
KeyCollection.Builder<E>
KeyCollection.Builder. withElemNull(boolean allowNull)
KeyCollection.Builder<E>
KeyCollection.Builder. withElemSet()
Add element map (with ident mapper).KeyCollection.Builder<E>
KeyCollection.Builder. withElemSort(boolean sort)
KeyCollection.Builder<E>
KeyCollection.Builder. withElemSort(java.util.Comparator<? super E> comparator)
KeyCollection.Builder<E>
KeyCollection.Builder. withElemSort(java.util.Comparator<? super E> comparator, boolean sortNullsFirst)
KeyCollection.Builder<E>
KeyCollection.Builder. withMaxSize(int maxSize)
KeyCollection.Builder<E>
KeyCollection.Builder. withNull(boolean allowNull)
KeyCollection.Builder<E>
KeyCollection.Builder. withOrderByElem(boolean orderBy)
KeyCollection.Builder<E>
KeyCollection.Builder. withPrimaryElem()
KeyCollection.Builder<E>
KeyCollection.Builder. withSetBehavior(boolean setBehavior)
KeyCollection.Builder<E>
KeyCollection.Builder. withUniqueElem()
-