Package io.quarkus.paths
Interface PathCollection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PathCollectionadd(Path... paths)PathCollectionaddAllFirst(Iterable<Path> i)PathCollectionaddFirst(Path... paths)booleancontains(Path path)default PathgetSinglePath()booleanisEmpty()booleanisSinglePath()PathresolveExistingOrNull(String path)intsize()default Stream<Path>stream()-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
isEmpty
boolean isEmpty()
-
size
int size()
-
isSinglePath
boolean isSinglePath()
-
getSinglePath
default Path getSinglePath()
-
contains
boolean contains(Path path)
-
add
PathCollection add(Path... paths)
-
addFirst
PathCollection addFirst(Path... paths)
-
addAllFirst
PathCollection addAllFirst(Iterable<Path> i)
-
-