Class DiscoverySelectors
static
factory methods for creating
DiscoverySelectors
.- Since:
- 1.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic Optional
<? extends DiscoverySelector> Parse the supplied string representation of aDiscoverySelectorIdentifier
.static Optional
<? extends DiscoverySelector> parse
(DiscoverySelectorIdentifier identifier) Parse the suppliedDiscoverySelectorIdentifier
.static Stream
<? extends DiscoverySelector> Parse the supplied string representations ofDiscoverySelectorIdentifiers
.static Stream
<? extends DiscoverySelector> parseAll
(Collection<DiscoverySelectorIdentifier> identifiers) Parse the suppliedDiscoverySelectorIdentifiers
.static ClassSelector
selectClass
(Class<?> clazz) Create aClassSelector
for the suppliedClass
.static ClassSelector
selectClass
(ClassLoader classLoader, String className) Create aClassSelector
for the supplied class name and class loader.static ClassSelector
selectClass
(String className) Create aClassSelector
for the supplied class name.static ClasspathResourceSelector
selectClasspathResource
(String classpathResourceName) Create aClasspathResourceSelector
for the supplied classpath resource name.static ClasspathResourceSelector
selectClasspathResource
(String classpathResourceName, FilePosition position) Create aClasspathResourceSelector
for the supplied classpath resource name.static List
<ClasspathRootSelector> selectClasspathRoots
(Set<Path> classpathRoots) Create a list ofClasspathRootSelectors
for the supplied classpath roots (directories or JAR files).static DirectorySelector
selectDirectory
(File directory) Create aDirectorySelector
for the supplied directory.static DirectorySelector
selectDirectory
(String path) Create aDirectorySelector
for the supplied directory path.static FileSelector
selectFile
(File file) Create aFileSelector
for the supplied file.static FileSelector
selectFile
(File file, FilePosition position) Create aFileSelector
for the supplied file.static FileSelector
selectFile
(String path) Create aFileSelector
for the supplied file path.static FileSelector
selectFile
(String path, FilePosition position) Create aFileSelector
for the supplied file path.static IterationSelector
selectIteration
(DiscoverySelector parentSelector, int... iterationIndices) Create anIterationSelector
for the supplied parent selector and iteration indices.static MethodSelector
selectMethod
(Class<?> javaClass, Method method) static MethodSelector
selectMethod
(Class<?> javaClass, String methodName) Create aMethodSelector
for the suppliedClass
and method name.static MethodSelector
selectMethod
(Class<?> javaClass, String methodName, Class<?>... parameterTypes) Create aMethodSelector
for the suppliedClass
, method name, and parameter types.static MethodSelector
selectMethod
(Class<?> javaClass, String methodName, String parameterTypeNames) Create aMethodSelector
for the suppliedClass
, method name, and parameter type names.static MethodSelector
selectMethod
(ClassLoader classLoader, String fullyQualifiedMethodName) Create aMethodSelector
for the supplied fully qualified method name and class loader.static MethodSelector
selectMethod
(ClassLoader classLoader, String className, String methodName) Create aMethodSelector
for the supplied class name, method name, and class loader.static MethodSelector
selectMethod
(ClassLoader classLoader, String className, String methodName, String parameterTypeNames) Create aMethodSelector
for the supplied class name, method name, parameter type names, and class loader.static MethodSelector
selectMethod
(String fullyQualifiedMethodName) Create aMethodSelector
for the supplied fully qualified method name.static MethodSelector
selectMethod
(String className, String methodName) Create aMethodSelector
for the supplied class name and method name using the default class loader.static MethodSelector
selectMethod
(String className, String methodName, Class<?>... parameterTypes) Create aMethodSelector
for the supplied class name, method name, and parameter types.static MethodSelector
selectMethod
(String className, String methodName, String parameterTypeNames) Create aMethodSelector
for the supplied class name, method name, and parameter type names.static ModuleSelector
selectModule
(String moduleName) Create aModuleSelector
for the supplied module name.static List
<ModuleSelector> selectModules
(Set<String> moduleNames) Create a list ofModuleSelectors
for the supplied module names.static NestedClassSelector
selectNestedClass
(ClassLoader classLoader, List<String> enclosingClassNames, String nestedClassName) Create aNestedClassSelector
for the supplied class name, its enclosing classes' names, and class loader.static NestedClassSelector
selectNestedClass
(List<Class<?>> enclosingClasses, Class<?> nestedClass) Create aNestedClassSelector
for the supplied nestedClass
and its enclosing classes.static NestedClassSelector
selectNestedClass
(List<String> enclosingClassNames, String nestedClassName) Create aNestedClassSelector
for the supplied class name and its enclosing classes' names.static NestedMethodSelector
selectNestedMethod
(ClassLoader classLoader, List<String> enclosingClassNames, String nestedClassName, String methodName) Create aNestedMethodSelector
for the supplied nested class name, method name, and class loader.static NestedMethodSelector
selectNestedMethod
(ClassLoader classLoader, List<String> enclosingClassNames, String nestedClassName, String methodName, String parameterTypeNames) Create aNestedMethodSelector
for the supplied nested class name, method name, parameter type names, and class loader.static NestedMethodSelector
selectNestedMethod
(List<Class<?>> enclosingClasses, Class<?> nestedClass, Method method) static NestedMethodSelector
selectNestedMethod
(List<Class<?>> enclosingClasses, Class<?> nestedClass, String methodName) Create aNestedMethodSelector
for the supplied nestedClass
and method name.static NestedMethodSelector
selectNestedMethod
(List<Class<?>> enclosingClasses, Class<?> nestedClass, String methodName, Class<?>... parameterTypes) Create aNestedMethodSelector
for the supplied enclosing classes, nested class, method name, and parameter types.static NestedMethodSelector
selectNestedMethod
(List<Class<?>> enclosingClasses, Class<?> nestedClass, String methodName, String parameterTypeNames) Create aNestedMethodSelector
for the suppliedClass
, method name, and parameter type names.static NestedMethodSelector
selectNestedMethod
(List<String> enclosingClassNames, String nestedClassName, String methodName) Create aNestedMethodSelector
for the supplied nested class name and method name.static NestedMethodSelector
selectNestedMethod
(List<String> enclosingClassNames, String nestedClassName, String methodName, Class<?>... parameterTypes) Create aNestedMethodSelector
for the supplied enclosing class names, nested class name, method name, and parameter types.static NestedMethodSelector
selectNestedMethod
(List<String> enclosingClassNames, String nestedClassName, String methodName, String parameterTypeNames) Create aNestedMethodSelector
for the supplied nested class name, method name, and parameter type names.static PackageSelector
selectPackage
(String packageName) Create aPackageSelector
for the supplied package name.static UniqueIdSelector
selectUniqueId
(String uniqueId) Create aUniqueIdSelector
for the supplied unique ID.static UniqueIdSelector
selectUniqueId
(UniqueId uniqueId) Create aUniqueIdSelector
for the suppliedUniqueId
.static UriSelector
Create aUriSelector
for the supplied URI.static UriSelector
Create aUriSelector
for the suppliedURI
.
-
Method Details
-
selectUri
Create aUriSelector
for the supplied URI.- Parameters:
uri
- the URI to select; nevernull
or blank- See Also:
-
selectUri
Create aUriSelector
for the suppliedURI
.- Parameters:
uri
- the URI to select; nevernull
- See Also:
-
selectFile
Create aFileSelector
for the supplied file path.This method selects the file using the supplied path as is, without verifying if the file exists.
- Parameters:
path
- the path to the file to select; nevernull
or blank- See Also:
-
selectFile
Create aFileSelector
for the supplied file.This method selects the file in its canonical form and throws a
PreconditionViolationException
if the file does not exist.- Parameters:
file
- the file to select; nevernull
- See Also:
-
selectFile
Create aFileSelector
for the supplied file path.This method selects the file using the supplied path as is, without verifying if the file exists.
- Parameters:
path
- the path to the file to select; nevernull
or blankposition
- the position inside the file; may benull
- See Also:
-
selectFile
Create aFileSelector
for the supplied file.This method selects the file in its canonical form and throws a
PreconditionViolationException
if the file does not exist.- Parameters:
file
- the file to select; nevernull
position
- the position inside the file; may benull
- See Also:
-
selectDirectory
Create aDirectorySelector
for the supplied directory path.This method selects the directory using the supplied path as is, without verifying if the directory exists.
- Parameters:
path
- the path to the directory to select; nevernull
or blank- See Also:
-
selectDirectory
Create aDirectorySelector
for the supplied directory.This method selects the directory in its canonical form and throws a
PreconditionViolationException
if the directory does not exist.- Parameters:
directory
- the directory to select; nevernull
- See Also:
-
selectClasspathRoots
Create a list ofClasspathRootSelectors
for the supplied classpath roots (directories or JAR files).Since the supplied paths are converted to
URIs
, theFileSystem
that created them must be the default or one that has been created by an installedFileSystemProvider
.Since engines are not expected to modify the classpath, the classpath roots represented by the resulting selectors must be on the classpath of the context class loader of the thread that uses these selectors.
- Parameters:
classpathRoots
- set of directories and JAR files in the filesystem that represent classpath roots; nevernull
- Returns:
- a list of selectors for the supplied classpath roots; elements which do not physically exist in the filesystem will be filtered out
- See Also:
-
selectClasspathResource
Create aClasspathResourceSelector
for the supplied classpath resource name.The name of a classpath resource must follow the semantics for resource paths as defined in
ClassLoader.getResource(String)
.If the supplied classpath resource name is prefixed with a slash (
/
), the slash will be removed.Since engines are not expected to modify the classpath, the supplied classpath resource must be on the classpath of the context class loader of the thread that uses the resulting selector.
- Parameters:
classpathResourceName
- the name of the classpath resource; nevernull
or blank- See Also:
-
selectClasspathResource
public static ClasspathResourceSelector selectClasspathResource(String classpathResourceName, FilePosition position) Create aClasspathResourceSelector
for the supplied classpath resource name.The name of a classpath resource must follow the semantics for resource paths as defined in
ClassLoader.getResource(String)
.If the supplied classpath resource name is prefixed with a slash (
/
), the slash will be removed.Since engines are not expected to modify the classpath, the supplied classpath resource must be on the classpath of the context class loader of the thread that uses the resulting selector.
- Parameters:
classpathResourceName
- the name of the classpath resource; nevernull
or blankposition
- the position inside the classpath resource; may benull
- See Also:
-
selectModule
Create aModuleSelector
for the supplied module name.The unnamed module is not supported.
- Parameters:
moduleName
- the module name to select; nevernull
or blank- Since:
- 1.1
- See Also:
-
selectModules
@API(status=STABLE, since="1.10") public static List<ModuleSelector> selectModules(Set<String> moduleNames) Create a list ofModuleSelectors
for the supplied module names.The unnamed module is not supported.
- Parameters:
moduleNames
- the module names to select; nevernull
, never containingnull
or blank- Since:
- 1.1
- See Also:
-
selectPackage
Create aPackageSelector
for the supplied package name.The default package is represented by an empty string (
""
).- Parameters:
packageName
- the package name to select; nevernull
and never containing whitespace only- See Also:
-
selectClass
Create aClassSelector
for the suppliedClass
.- Parameters:
clazz
- the class to select; nevernull
- See Also:
-
selectClass
Create aClassSelector
for the supplied class name.- Parameters:
className
- the fully qualified name of the class to select; nevernull
or blank- See Also:
-
selectClass
@API(status=EXPERIMENTAL, since="1.10") public static ClassSelector selectClass(ClassLoader classLoader, String className) Create aClassSelector
for the supplied class name and class loader.- Parameters:
classLoader
- the class loader to use to load the class, ornull
to signal that the defaultClassLoader
should be usedclassName
- the fully qualified name of the class to select; nevernull
or blank- Since:
- 1.10
- See Also:
-
selectMethod
public static MethodSelector selectMethod(String fullyQualifiedMethodName) throws PreconditionViolationException Create aMethodSelector
for the supplied fully qualified method name.The following formats are supported.
[fully qualified class name]#[methodName]
[fully qualified class name]#[methodName](parameter type list)
The parameter type list is a comma-separated list of primitive names or fully qualified class names for the types of parameters accepted by the method.
Array parameter types may be specified using either the JVM's internal String representation (e.g.,
[[I
forint[][]
,[Ljava.lang.String;
forjava.lang.String[]
, etc.) or source code syntax (e.g.,int[][]
,java.lang.String[]
, etc.).Examples Method Fully Qualified Method Name java.lang.String.chars()
java.lang.String#chars
java.lang.String.chars()
java.lang.String#chars()
java.lang.String.equalsIgnoreCase(String)
java.lang.String#equalsIgnoreCase(java.lang.String)
java.lang.String.substring(int, int)
java.lang.String#substring(int, int)
example.Calc.avg(int[])
example.Calc#avg([I)
example.Calc.avg(int[])
example.Calc#avg(int[])
example.Matrix.multiply(double[][])
example.Matrix#multiply([[D)
example.Matrix.multiply(double[][])
example.Matrix#multiply(double[][])
example.Service.process(String[])
example.Service#process([Ljava.lang.String;)
example.Service.process(String[])
example.Service#process(java.lang.String[])
example.Service.process(String[][])
example.Service#process([[Ljava.lang.String;)
example.Service.process(String[][])
example.Service#process(java.lang.String[][])
- Parameters:
fullyQualifiedMethodName
- the fully qualified name of the method to select; nevernull
or blank- Throws:
PreconditionViolationException
- See Also:
-
selectMethod
@API(status=EXPERIMENTAL, since="1.10") public static MethodSelector selectMethod(ClassLoader classLoader, String fullyQualifiedMethodName) throws PreconditionViolationException Create aMethodSelector
for the supplied fully qualified method name and class loader.See
selectMethod(String)
for the supported formats for a fully qualified method name.- Parameters:
classLoader
- the class loader to use to load the method's declaring class, ornull
to signal that the defaultClassLoader
should be usedfullyQualifiedMethodName
- the fully qualified name of the method to select; nevernull
or blank- Throws:
PreconditionViolationException
- Since:
- 1.10
- See Also:
-
selectMethod
Create aMethodSelector
for the supplied class name and method name using the default class loader.- Parameters:
className
- the fully qualified name of the class in which the method is declared, or a subclass thereof; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blank- See Also:
-
selectMethod
@API(status=EXPERIMENTAL, since="1.10") public static MethodSelector selectMethod(ClassLoader classLoader, String className, String methodName) Create aMethodSelector
for the supplied class name, method name, and class loader.- Parameters:
classLoader
- the class loader to use to load the class, ornull
to signal that the defaultClassLoader
should be usedclassName
- the fully qualified name of the class in which the method is declared, or a subclass thereof; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blank- Since:
- 1.10
- See Also:
-
selectMethod
public static MethodSelector selectMethod(String className, String methodName, String parameterTypeNames) Create aMethodSelector
for the supplied class name, method name, and parameter type names.The parameter type names
String
is typically a comma-separated list of atomic types, fully qualified class names, or array types; however, the exact syntax depends on the underlying test engine.- Parameters:
className
- the fully qualified name of the class in which the method is declared, or a subclass thereof; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blankparameterTypeNames
- the parameter type names as a single string; nevernull
though potentially an empty string if the method does not declare parameters- See Also:
-
selectMethod
@API(status=EXPERIMENTAL, since="1.10") public static MethodSelector selectMethod(ClassLoader classLoader, String className, String methodName, String parameterTypeNames) Create aMethodSelector
for the supplied class name, method name, parameter type names, and class loader.The parameter type names
String
is typically a comma-separated list of atomic types, fully qualified class names, or array types; however, the exact syntax depends on the underlying test engine.- Parameters:
classLoader
- the class loader to use to load the class, ornull
to signal that the defaultClassLoader
should be usedclassName
- the fully qualified name of the class in which the method is declared, or a subclass thereof; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blankparameterTypeNames
- the parameter type names as a single string; nevernull
though potentially an empty string if the method does not declare any parameters- Since:
- 1.10
- See Also:
-
selectMethod
Create aMethodSelector
for the suppliedClass
and method name.- Parameters:
javaClass
- the class in which the method is declared, or a subclass thereof; nevernull
methodName
- the name of the method to select; nevernull
or blank- See Also:
-
selectMethod
public static MethodSelector selectMethod(Class<?> javaClass, String methodName, String parameterTypeNames) Create aMethodSelector
for the suppliedClass
, method name, and parameter type names.The parameter type names
String
is typically a comma-separated list of atomic types, fully qualified class names, or array types; however, the exact syntax depends on the underlying test engine.- Parameters:
javaClass
- the class in which the method is declared, or a subclass thereof; nevernull
methodName
- the name of the method to select; nevernull
or blankparameterTypeNames
- the parameter type names as a single string; nevernull
though potentially an empty string if the method does not declare any parameters- See Also:
-
selectMethod
@API(status=EXPERIMENTAL, since="1.10") public static MethodSelector selectMethod(String className, String methodName, Class<?>... parameterTypes) Create aMethodSelector
for the supplied class name, method name, and parameter types.- Parameters:
className
- the fully qualified name of the class in which the method is declared, or a subclass thereof; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blankparameterTypes
- the formal parameter types of the method; nevernull
though potentially empty if the method does not declare parameters- Since:
- 1.10
- See Also:
-
selectMethod
@API(status=EXPERIMENTAL, since="1.10") public static MethodSelector selectMethod(Class<?> javaClass, String methodName, Class<?>... parameterTypes) Create aMethodSelector
for the suppliedClass
, method name, and parameter types.- Parameters:
javaClass
- the class in which the method is declared, or a subclass thereof; nevernull
methodName
- the name of the method to select; nevernull
or blankparameterTypes
- the formal parameter types of the method; nevernull
though potentially empty if the method does not declare parameters- Since:
- 1.10
- See Also:
-
selectMethod
- Parameters:
javaClass
- the class in which the method is declared, or a subclass thereof; nevernull
method
- the method to select; nevernull
- See Also:
-
selectNestedClass
@API(status=STABLE, since="1.6") public static NestedClassSelector selectNestedClass(List<Class<?>> enclosingClasses, Class<?> nestedClass) Create aNestedClassSelector
for the supplied nestedClass
and its enclosing classes.- Parameters:
enclosingClasses
- the path to the nested class to select; nevernull
or emptynestedClass
- the nested class to select; nevernull
- Since:
- 1.6
- See Also:
-
selectNestedClass
@API(status=STABLE, since="1.6") public static NestedClassSelector selectNestedClass(List<String> enclosingClassNames, String nestedClassName) Create aNestedClassSelector
for the supplied class name and its enclosing classes' names.- Parameters:
enclosingClassNames
- the names of the enclosing classes; nevernull
or emptynestedClassName
- the name of the nested class to select; nevernull
or blank- Since:
- 1.6
- See Also:
-
selectNestedClass
@API(status=EXPERIMENTAL, since="1.10") public static NestedClassSelector selectNestedClass(ClassLoader classLoader, List<String> enclosingClassNames, String nestedClassName) Create aNestedClassSelector
for the supplied class name, its enclosing classes' names, and class loader.- Parameters:
classLoader
- the class loader to use to load the enclosing and nested classes, ornull
to signal that the defaultClassLoader
should be usedenclosingClassNames
- the names of the enclosing classes; nevernull
or emptynestedClassName
- the name of the nested class to select; nevernull
or blank- Since:
- 1.10
- See Also:
-
selectNestedMethod
@API(status=STABLE, since="1.6") public static NestedMethodSelector selectNestedMethod(List<String> enclosingClassNames, String nestedClassName, String methodName) Create aNestedMethodSelector
for the supplied nested class name and method name.- Parameters:
enclosingClassNames
- the names of the enclosing classes; nevernull
or emptynestedClassName
- the name of the nested class to select; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blank- Since:
- 1.6
- See Also:
-
selectNestedMethod
@API(status=EXPERIMENTAL, since="1.10") public static NestedMethodSelector selectNestedMethod(ClassLoader classLoader, List<String> enclosingClassNames, String nestedClassName, String methodName) throws PreconditionViolationException Create aNestedMethodSelector
for the supplied nested class name, method name, and class loader.- Parameters:
classLoader
- the class loader to use to load the method's declaring class, ornull
to signal that the defaultClassLoader
should be usedenclosingClassNames
- the names of the enclosing classes; nevernull
or emptynestedClassName
- the name of the nested class to select; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blank- Throws:
PreconditionViolationException
- Since:
- 1.10
- See Also:
-
selectNestedMethod
@API(status=STABLE, since="1.6") public static NestedMethodSelector selectNestedMethod(List<String> enclosingClassNames, String nestedClassName, String methodName, String parameterTypeNames) Create aNestedMethodSelector
for the supplied nested class name, method name, and parameter type names.The parameter type names
String
is typically a comma-separated list of atomic types, fully qualified class names, or array types; however, the exact syntax depends on the underlying test engine.- Parameters:
enclosingClassNames
- the names of the enclosing classes; nevernull
or emptynestedClassName
- the name of the nested class to select; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blankparameterTypeNames
- the parameter type names as a single string; nevernull
though potentially an empty string if the method does not declare parameters- Since:
- 1.6
- See Also:
-
selectNestedMethod
@API(status=EXPERIMENTAL, since="1.10") public static NestedMethodSelector selectNestedMethod(ClassLoader classLoader, List<String> enclosingClassNames, String nestedClassName, String methodName, String parameterTypeNames) Create aNestedMethodSelector
for the supplied nested class name, method name, parameter type names, and class loader.- Parameters:
classLoader
- the class loader to use to load the method's declaring class, ornull
to signal that the defaultClassLoader
should be usedenclosingClassNames
- the names of the enclosing classes; nevernull
or emptynestedClassName
- the name of the nested class to select; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blankparameterTypeNames
- the parameter type names as a single string; nevernull
though potentially an empty string if the method does not declare parameters- Since:
- 1.10
- See Also:
-
selectNestedMethod
@API(status=EXPERIMENTAL, since="1.10") public static NestedMethodSelector selectNestedMethod(List<String> enclosingClassNames, String nestedClassName, String methodName, Class<?>... parameterTypes) Create aNestedMethodSelector
for the supplied enclosing class names, nested class name, method name, and parameter types.- Parameters:
enclosingClassNames
- the names of the enclosing classes; nevernull
or emptynestedClassName
- the name of the nested class to select; nevernull
or blankmethodName
- the name of the method to select; nevernull
or blankparameterTypes
- the formal parameter types of the method; nevernull
though potentially empty if the method does not declare parameters- Since:
- 1.10
- See Also:
-
selectNestedMethod
@API(status=STABLE, since="1.6") public static NestedMethodSelector selectNestedMethod(List<Class<?>> enclosingClasses, Class<?> nestedClass, String methodName) Create aNestedMethodSelector
for the supplied nestedClass
and method name.- Parameters:
enclosingClasses
- the path to the nested class to select; nevernull
or emptynestedClass
- the nested class to select; nevernull
methodName
- the name of the method to select; nevernull
or blank- Since:
- 1.6
- See Also:
-
selectNestedMethod
@API(status=STABLE, since="1.6") public static NestedMethodSelector selectNestedMethod(List<Class<?>> enclosingClasses, Class<?> nestedClass, String methodName, String parameterTypeNames) Create aNestedMethodSelector
for the suppliedClass
, method name, and parameter type names.The parameter type names
String
is typically a comma-separated list of atomic types, fully qualified class names, or array types; however, the exact syntax depends on the underlying test engine.- Parameters:
enclosingClasses
- the path to the nested class to select; nevernull
or emptynestedClass
- the nested class to select; nevernull
methodName
- the name of the method to select; nevernull
or blankparameterTypeNames
- the parameter type names as a single string; nevernull
though potentially an empty string if the method does not declare parameters- Since:
- 1.6
- See Also:
-
selectNestedMethod
@API(status=EXPERIMENTAL, since="1.10") public static NestedMethodSelector selectNestedMethod(List<Class<?>> enclosingClasses, Class<?> nestedClass, String methodName, Class<?>... parameterTypes) Create aNestedMethodSelector
for the supplied enclosing classes, nested class, method name, and parameter types.- Parameters:
enclosingClasses
- the path to the nested class to select; nevernull
or emptynestedClass
- the nested class to select; nevernull
methodName
- the name of the method to select; nevernull
or blankparameterTypes
- the formal parameter types of the method; nevernull
though potentially empty if the method does not declare parameters- Since:
- 1.10
- See Also:
-
selectNestedMethod
@API(status=STABLE, since="1.6") public static NestedMethodSelector selectNestedMethod(List<Class<?>> enclosingClasses, Class<?> nestedClass, Method method) - Parameters:
enclosingClasses
- the path to the nested class to select; nevernull
or emptynestedClass
- the nested class to select; nevernull
method
- the method to select; nevernull
- Since:
- 1.6
- See Also:
-
selectUniqueId
Create aUniqueIdSelector
for the suppliedUniqueId
.- Parameters:
uniqueId
- theUniqueId
to select; nevernull
- See Also:
-
selectUniqueId
Create aUniqueIdSelector
for the supplied unique ID.- Parameters:
uniqueId
- the unique ID to select; nevernull
or blank- See Also:
-
selectIteration
@API(status=EXPERIMENTAL, since="1.9") public static IterationSelector selectIteration(DiscoverySelector parentSelector, int... iterationIndices) Create anIterationSelector
for the supplied parent selector and iteration indices.- Parameters:
parentSelector
- the parent selector to select iterations for; nevernull
iterationIndices
- the iteration indices to select; nevernull
or empty- Since:
- 1.9
- See Also:
-
parse
@API(status=EXPERIMENTAL, since="1.11") public static Optional<? extends DiscoverySelector> parse(String identifier) Parse the supplied string representation of aDiscoverySelectorIdentifier
.- Parameters:
identifier
- the string representation of aDiscoverySelectorIdentifier
; nevernull
or blank- Returns:
- an
Optional
containing the correspondingDiscoverySelector
; nevernull
but potentially empty - Since:
- 1.11
- See Also:
-
parse
@API(status=EXPERIMENTAL, since="1.11") public static Optional<? extends DiscoverySelector> parse(DiscoverySelectorIdentifier identifier) Parse the suppliedDiscoverySelectorIdentifier
.- Parameters:
identifier
- theDiscoverySelectorIdentifier
to parse; nevernull
- Returns:
- an
Optional
containing the correspondingDiscoverySelector
; nevernull
but potentially empty - Since:
- 1.11
- See Also:
-
parseAll
@API(status=EXPERIMENTAL, since="1.11") public static Stream<? extends DiscoverySelector> parseAll(String... identifiers) Parse the supplied string representations ofDiscoverySelectorIdentifiers
.- Parameters:
identifiers
- the string representations ofDiscoverySelectorIdentifiers
to parse; nevernull
- Returns:
- a stream of the corresponding
DiscoverySelectors
; nevernull
but potentially empty - Since:
- 1.11
- See Also:
-
parseAll
@API(status=EXPERIMENTAL, since="1.11") public static Stream<? extends DiscoverySelector> parseAll(Collection<DiscoverySelectorIdentifier> identifiers) Parse the suppliedDiscoverySelectorIdentifiers
.- Parameters:
identifiers
- theDiscoverySelectorIdentifiers
to parse; nevernull
- Returns:
- a stream of the corresponding
DiscoverySelectors
; nevernull
but potentially empty - Since:
- 1.11
- See Also:
-