org.ehcache.xml.model.Offheap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ehcache-xml Show documentation
Show all versions of ehcache-xml Show documentation
The module containing all XML parsing logic Ehcache 3
package org.ehcache.xml.model;
import javax.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
@SuppressWarnings({
"unchecked",
"serial"
})
public class Offheap
extends JAXBElement
{
protected final static QName NAME = new QName("http://www.ehcache.org/v3", "offheap");
public Offheap(MemoryTypeWithPropSubst value) {
super(NAME, ((Class) MemoryTypeWithPropSubst.class), null, value);
}
public Offheap() {
super(NAME, ((Class) MemoryTypeWithPropSubst.class), null, null);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy