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 Show documentation
Show all versions of ehcache Show documentation
Ehcache single jar, containing all modules
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 - 2024 Weber Informatics LLC | Privacy Policy