作者: | 来源:互联网 | 2023-09-17 19:25
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLAnyCollectionMapping.getContainerPolicy()
本文整理了Java中org.eclipse.persistence.oxm.mappings.XMLAnyCollectionMapping.getContainerPolicy()
方法的一些代码示例,展示了XMLAnyCollectionMapping.getContainerPolicy()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLAnyCollectionMapping.getContainerPolicy()
方法的具体详情如下:
包路径:org.eclipse.persistence.oxm.mappings.XMLAnyCollectionMapping
类名称:XMLAnyCollectionMapping
方法名:getContainerPolicy
XMLAnyCollectionMapping.getContainerPolicy介绍
[英]INTERNAL: Return the mapping's containerPolicy.
[中]内部:返回映射的containerPolicy。
代码示例
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
public ContainerPolicy getContainerPolicy() {
return xmlAnyCollectionMapping.getContainerPolicy();
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
public Object clone() {
// Bug 3037701 - clone the AttributeAccessor
XMLAnyCollectionMapping mapping = null;
mapping = (XMLAnyCollectionMapping) super.clone();
mapping.setContainerPolicy(this.getContainerPolicy());
mapping.setField(this.getField());
return mapping;
}
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
public Object clone() {
// Bug 3037701 - clone the AttributeAccessor
XMLAnyCollectionMapping mapping = null;
mapping = (XMLAnyCollectionMapping) super.clone();
mapping.setContainerPolicy(this.getContainerPolicy());
mapping.setField(this.getField());
return mapping;
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
public Object clone() {
// Bug 3037701 - clone the AttributeAccessor
XMLAnyCollectionMapping mapping = null;
mapping = (XMLAnyCollectionMapping) super.clone();
mapping.setContainerPolicy(this.getContainerPolicy());
mapping.setField(this.getField());
return mapping;
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
NodeList children = root.getChildNodes();
ContainerPolicy cp = getContainerPolicy();
Object cOntainer= null;
if (reuseContainer) {
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
NodeList children = root.getChildNodes();
ContainerPolicy cp = getContainerPolicy();
Object cOntainer= null;
if (reuseContainer) {
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
NodeList children = root.getChildNodes();
ContainerPolicy cp = getContainerPolicy();
Object cOntainer= null;
if (reuseContainer) {
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
ContainerPolicy cp = this.getContainerPolicy();
ArrayList childNodes = getUnmappedChildNodes(record.getDOM().getChildNodes());
Object iter = cp.iteratorFor(attributeValue);
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
ContainerPolicy cp = this.getContainerPolicy();
ArrayList childNodes = getUnmappedChildNodes(record.getDOM().getChildNodes());
Object iter = cp.iteratorFor(attributeValue);
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
ContainerPolicy cp = this.getContainerPolicy();
ArrayList childNodes = getUnmappedChildNodes(record.getDOM().getChildNodes());
Object iter = cp.iteratorFor(attributeValue);
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
public boolean marshal(XPathFragment xPathFragment, MarshalRecord marshalRecord, Object object, AbstractSession session, NamespaceResolver namespaceResolver) {
if (xmlAnyCollectionMapping.isReadOnly()) {
return false;
}
ContainerPolicy cp = xmlAnyCollectionMapping.getContainerPolicy();
Object collection = xmlAnyCollectionMapping.getAttributeAccessor().getAttributeValueFromObject(object);
if (null == collection) {
return false;
}
Object iterator = cp.iteratorFor(collection);
if (cp.hasNext(iterator)) {
XPathFragment groupingFragment = marshalRecord.openStartGroupingElements(namespaceResolver);
marshalRecord.closeStartGroupingElements(groupingFragment);
} else {
return false;
}
Object objectValue;
while (cp.hasNext(iterator)) {
objectValue = cp.next(iterator, session);
if(xmlAnyCollectionMapping.getConverter() != null) {
objectValue = xmlAnyCollectionMapping.getConverter().convertObjectValueToDataValue(objectValue, session, marshalRecord.getMarshaller());
}
marshalSingleValue(xPathFragment, marshalRecord, object, objectValue, session, namespaceResolver, ObjectMarshalContext.getInstance());
}
return true;
}