public interface Loadable<T>
Modifier and Type | Method and Description |
---|---|
T |
load(java.io.File file)
Load from a
File . |
T |
load(java.io.InputStream is)
Load from an
InputStream . |
T |
load(java.lang.String path)
Load from path.
|
T |
load(java.net.URL url)
Load from a
URL . |
T load(java.io.InputStream is)
InputStream
.is
- The input stream.T load(java.net.URL url)
URL
.url
- The url.T load(java.io.File file)
File
.file
- The file.T load(java.lang.String path)
path
- The path.Copyright © 2015-2019 Red Hat. All Rights Reserved.