public class Run
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
Run.SchemeType |
Constructor and Description |
---|
Run() |
Modifier and Type | Method and Description |
---|---|
static java.util.List<java.lang.String> |
findSchemeMatch(java.lang.Class<?> classType,
java.lang.String schemeToFind,
boolean matchAnywhere,
boolean notJustRunnables)
Find a scheme that matches the supplied suffix
|
static java.util.List<java.lang.String> |
findSchemeMatch(java.lang.String schemeToFind,
boolean matchAnywhere)
Find a scheme that matches the supplied suffix
|
static void |
main(java.lang.String[] args)
Main method for this class.
|
public static java.util.List<java.lang.String> findSchemeMatch(java.lang.Class<?> classType, java.lang.String schemeToFind, boolean matchAnywhere, boolean notJustRunnables)
classType
- matching schemes must be of this class typeschemeToFind
- the name of the scheme to findmatchAnywhere
- if true, the name is matched anywhere in the
non-package part of candidate schemespublic static java.util.List<java.lang.String> findSchemeMatch(java.lang.String schemeToFind, boolean matchAnywhere)
schemeToFind
- the name of the scheme to findmatchAnywhere
- if true, the name is matched anywhere in the
non-package part of candidate schemespublic static void main(java.lang.String[] args)
args
-