Uses of Class
org.hibernate.boot.jaxb.spi.XmlSource
-
Packages that use XmlSource Package Description org.hibernate.boot.jaxb.internal -
-
Uses of XmlSource in org.hibernate.boot.jaxb.internal
Subclasses of XmlSource in org.hibernate.boot.jaxb.internal Modifier and Type Class Description class
CacheableFileXmlSource
class
FileXmlSource
class
InputStreamAccessXmlSource
class
InputStreamXmlSource
class
JarFileEntryXmlSource
class
JaxpSourceXmlSource
class
UrlXmlSource
Methods in org.hibernate.boot.jaxb.internal that return XmlSource Modifier and Type Method Description static XmlSource
XmlSources. fromCacheableFile(File file)
static XmlSource
XmlSources. fromCacheableFile(File file, boolean strict)
static XmlSource
XmlSources. fromCacheableFile(File file, File cacheableDir)
static XmlSource
XmlSources. fromCacheableFile(File file, File cacheableDir, boolean strict)
static XmlSource
XmlSources. fromDocument(Document document)
static XmlSource
XmlSources. fromFile(File file)
static XmlSource
XmlSources. fromResource(String resourceName, ClassLoaderService classLoaderService)
Create anXmlSource
from a named resourcestatic XmlSource
XmlSources. fromStream(InputStream inputStream)
static XmlSource
XmlSources. fromStream(InputStreamAccess inputStreamAccess)
static XmlSource
XmlSources. fromUrl(URL url)
Create anXmlSource
from a URLMethod parameters in org.hibernate.boot.jaxb.internal with type arguments of type XmlSource Modifier and Type Method Description static void
XmlSources. fromJar(File jar, Consumer<XmlSource> consumer)
Read all.hbm.xml
mappings from a jar file and pass them to the givenConsumer
.
-