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 boolean
add(@NotNull ItemPath itemPath)
boolean
addAll(@NotNull Collection<? extends ItemPath> c)
void
clear()
boolean
contains(Object o)
boolean
containsAll(@NotNull Collection<?> c)
boolean
isEmpty()
@NotNull Iterator<ItemPath>
iterator()
boolean
remove(Object o)
boolean
removeAll(@NotNull Collection<?> c)
boolean
retainAll(@NotNull Collection<?> c)
int
size()
@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:
containsAll
in interfaceCollection<ItemPath>
- Specified by:
containsAll
in 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)
-
-