Package com.intuit.karate.resource
Interface Resource
-
- All Known Implementing Classes:
FileResource,JarResource,MemoryResource
public interface Resource- Author:
- pthomas3
-
-
Field Summary
Fields Modifier and Type Field Description static StringCLASSPATH_COLONstatic StringFILE_COLONstatic StringTHIS_COLON
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FilegetFile()default StringgetFileNameWithoutExtension()default StringgetPackageQualifiedName()default StringgetPrefixedParentPath()default StringgetPrefixedPath()StringgetRelativePath()InputStreamgetStream()URIgetUri()booleanisClassPath()booleanisFile()Resourceresolve(String path)
-
-
-
Field Detail
-
CLASSPATH_COLON
static final String CLASSPATH_COLON
- See Also:
- Constant Field Values
-
FILE_COLON
static final String FILE_COLON
- See Also:
- Constant Field Values
-
THIS_COLON
static final String THIS_COLON
- See Also:
- Constant Field Values
-
-
Method Detail
-
isFile
boolean isFile()
-
isClassPath
boolean isClassPath()
-
getFile
File getFile()
-
getUri
URI getUri()
-
getRelativePath
String getRelativePath()
-
getPrefixedPath
default String getPrefixedPath()
-
getPrefixedParentPath
default String getPrefixedParentPath()
-
getPackageQualifiedName
default String getPackageQualifiedName()
-
getFileNameWithoutExtension
default String getFileNameWithoutExtension()
-
getStream
InputStream getStream()
-
-