Package com.evolveum.midpoint.prism.path
Class PathSet
- java.lang.Object
-
- com.evolveum.midpoint.prism.path.PathSet
-
@Experimental public class PathSet extends Object implements Set<ItemPath>
-
-
Constructor Summary
Constructors Constructor Description PathSet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(@NotNull ItemPath itemPath)booleanaddAll(@NotNull Collection<? extends ItemPath> c)voidclear()booleancontains(Object o)booleancontainsAll(@NotNull Collection<?> c)booleanisEmpty()@NotNull Iterator<ItemPath>iterator()booleanremove(Object o)booleanremoveAll(@NotNull Collection<?> c)booleanretainAll(@NotNull Collection<?> c)intsize()@NotNull Object[]toArray()<T> @NotNull T[]toArray(@NotNull T[] a)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.Set
equals, hashCode, spliterator
-
-
-
-
Method Detail
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(Object o)
-
toArray
@NotNull public @NotNull Object[] toArray()
-
toArray
@NotNull public <T> @NotNull T[] toArray(@NotNull @NotNull T[] a)
-
add
public boolean add(@NotNull @NotNull ItemPath itemPath)
-
remove
public boolean remove(Object o)
-
containsAll
public boolean containsAll(@NotNull @NotNull Collection<?> c)- Specified by:
containsAllin interfaceCollection<ItemPath>- Specified by:
containsAllin interfaceSet<ItemPath>
-
addAll
public boolean addAll(@NotNull @NotNull Collection<? extends ItemPath> c)
-
retainAll
public boolean retainAll(@NotNull @NotNull Collection<?> c)
-
removeAll
public boolean removeAll(@NotNull @NotNull Collection<?> c)
-
-