com.thoughtworks.xstream.XStream.addImplicitMap()方法的使用及代码示例

x33g5p2x  于2022-02-02 转载在 其他  
字(9.1k)|赞(0)|评价(0)|浏览(193)

本文整理了Java中com.thoughtworks.xstream.XStream.addImplicitMap()方法的一些代码示例,展示了XStream.addImplicitMap()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XStream.addImplicitMap()方法的具体详情如下:
包路径:com.thoughtworks.xstream.XStream
类名称:XStream
方法名:addImplicitMap

XStream.addImplicitMap介绍

[英]Adds an implicit map.
[中]添加隐式映射。

代码示例

代码示例来源:origin: com.thoughtworks.xstream/xstream

/**
 * Adds an implicit map.
 *
 * @param ownerType class owning the implicit map
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            map type or matching the default implementation type of the map
 *            type.
 * @param itemType type of the items to be part of this map as value
 * @param keyFieldName the name of the field of the itemType that is used for the key in the map
 * @since 1.4 
 */
public void addImplicitMap(Class ownerType, String fieldName, Class itemType, String keyFieldName) {
  addImplicitMap(ownerType, fieldName, null, itemType, keyFieldName);
}

代码示例来源:origin: com.thoughtworks.xstream/xstream

/**
 * Adds implicit collection which is used for all items of the given element name defined by
 * itemFieldName.
 * 
 * @param ownerType class owning the implicit collection
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            collection type or matching the default implementation type of the collection
 *            type.
 * @param itemFieldName element name of the implicit collection
 * @param itemType item type to be aliases be the itemFieldName
 * @throws InitializationException if no {@link ImplicitCollectionMapper} is available
 */
public void addImplicitCollection(Class ownerType, String fieldName, String itemFieldName,
  Class itemType) {
  addImplicitMap(ownerType, fieldName, itemFieldName, itemType, null);
}

代码示例来源:origin: x-stream/xstream

/**
 * Adds implicit collection which is used for all items of the given element name defined by itemFieldName.
 *
 * @param ownerType class owning the implicit collection
 * @param fieldName name of the field in the ownerType. This field must be a concrete collection type or matching
 *            the default implementation type of the collection type.
 * @param itemFieldName element name of the implicit collection
 * @param itemType item type to be aliases be the itemFieldName
 * @throws InitializationException if no {@link ImplicitCollectionMapper} is available
 */
public void addImplicitCollection(final Class<?> ownerType, final String fieldName, final String itemFieldName,
    final Class<?> itemType) {
  addImplicitMap(ownerType, fieldName, itemFieldName, itemType, null);
}

代码示例来源:origin: com.haulmont.thirdparty/xstream

/**
 * Adds an implicit map.
 * 
 * @param ownerType class owning the implicit map
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            map type or matching the default implementation type of the map
 *            type.
 * @param itemType type of the items to be part of this map as value
 * @param keyFieldName the name of the filed of the itemType that is used for the key in the map
 * @since 1.4 
 */
public void addImplicitMap(Class ownerType, String fieldName, Class itemType, String keyFieldName) {
  addImplicitMap(ownerType, fieldName, null, itemType, keyFieldName);
}

代码示例来源:origin: x-stream/xstream

/**
 * Adds an implicit map.
 *
 * @param ownerType class owning the implicit map
 * @param fieldName name of the field in the ownerType. This field must be a concrete map type or matching the
 *            default implementation type of the map type.
 * @param itemType type of the items to be part of this map as value
 * @param keyFieldName the name of the field of the itemType that is used for the key in the map
 * @since 1.4
 */
public void addImplicitMap(final Class<?> ownerType, final String fieldName, final Class<?> itemType,
    final String keyFieldName) {
  addImplicitMap(ownerType, fieldName, null, itemType, keyFieldName);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xstream

/**
 * Adds an implicit map.
 *
 * @param ownerType class owning the implicit map
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            map type or matching the default implementation type of the map
 *            type.
 * @param itemType type of the items to be part of this map as value
 * @param keyFieldName the name of the field of the itemType that is used for the key in the map
 * @since 1.4 
 */
public void addImplicitMap(Class ownerType, String fieldName, Class itemType, String keyFieldName) {
  addImplicitMap(ownerType, fieldName, null, itemType, keyFieldName);
}

代码示例来源:origin: com.haulmont.thirdparty/xstream

/**
 * Adds implicit collection which is used for all items of the given element name defined by
 * itemFieldName.
 * 
 * @param ownerType class owning the implicit collection
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            collection type or matching the default implementation type of the collection
 *            type.
 * @param itemFieldName element name of the implicit collection
 * @param itemType item type to be aliases be the itemFieldName
 * @throws InitializationException if no {@link ImplicitCollectionMapper} is available
 */
public void addImplicitCollection(Class ownerType, String fieldName, String itemFieldName,
  Class itemType) {
  addImplicitMap(ownerType, fieldName, itemFieldName, itemType, null);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xstream-java8

/**
 * Adds an implicit map.
 *
 * @param ownerType class owning the implicit map
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            map type or matching the default implementation type of the map
 *            type.
 * @param itemType type of the items to be part of this map as value
 * @param keyFieldName the name of the field of the itemType that is used for the key in the map
 * @since 1.4 
 */
public void addImplicitMap(Class ownerType, String fieldName, Class itemType, String keyFieldName) {
  addImplicitMap(ownerType, fieldName, null, itemType, keyFieldName);
}

代码示例来源:origin: org.sonatype.nexus.xstream/xstream

/**
 * Adds an implicit map.
 * 
 * @param ownerType class owning the implicit map
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            map type or matching the default implementation type of the map
 *            type.
 * @param itemType type of the items to be part of this map as value
 * @param keyFieldName the name of the field of the itemType that is used for the key in the map
 * @since 1.4 
 */
public void addImplicitMap(Class ownerType, String fieldName, Class itemType, String keyFieldName) {
  addImplicitMap(ownerType, fieldName, null, itemType, keyFieldName);
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Adds implicit collection which is used for all items of the given element name defined by
 * itemFieldName.
 * 
 * @param ownerType class owning the implicit collection
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            collection type or matching the default implementation type of the collection
 *            type.
 * @param itemFieldName element name of the implicit collection
 * @param itemType item type to be aliases be the itemFieldName
 * @throws InitializationException if no {@link ImplicitCollectionMapper} is available
 */
public void addImplicitCollection(Class ownerType, String fieldName, String itemFieldName,
  Class itemType) {
  addImplicitMap(ownerType, fieldName, itemFieldName, itemType, null);
}

代码示例来源:origin: apache/servicemix-bundles

/**
 * Adds an implicit map.
 *
 * @param ownerType class owning the implicit map
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            map type or matching the default implementation type of the map
 *            type.
 * @param itemType type of the items to be part of this map as value
 * @param keyFieldName the name of the field of the itemType that is used for the key in the map
 * @since 1.4 
 */
public void addImplicitMap(Class ownerType, String fieldName, Class itemType, String keyFieldName) {
  addImplicitMap(ownerType, fieldName, null, itemType, keyFieldName);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xstream

/**
 * Adds implicit collection which is used for all items of the given element name defined by
 * itemFieldName.
 * 
 * @param ownerType class owning the implicit collection
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            collection type or matching the default implementation type of the collection
 *            type.
 * @param itemFieldName element name of the implicit collection
 * @param itemType item type to be aliases be the itemFieldName
 * @throws InitializationException if no {@link ImplicitCollectionMapper} is available
 */
public void addImplicitCollection(Class ownerType, String fieldName, String itemFieldName,
  Class itemType) {
  addImplicitMap(ownerType, fieldName, itemFieldName, itemType, null);
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xstream-java8

/**
 * Adds implicit collection which is used for all items of the given element name defined by
 * itemFieldName.
 * 
 * @param ownerType class owning the implicit collection
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            collection type or matching the default implementation type of the collection
 *            type.
 * @param itemFieldName element name of the implicit collection
 * @param itemType item type to be aliases be the itemFieldName
 * @throws InitializationException if no {@link ImplicitCollectionMapper} is available
 */
public void addImplicitCollection(Class ownerType, String fieldName, String itemFieldName,
  Class itemType) {
  addImplicitMap(ownerType, fieldName, itemFieldName, itemType, null);
}

代码示例来源:origin: org.sonatype.nexus.xstream/xstream

/**
 * Adds implicit collection which is used for all items of the given element name defined by
 * itemFieldName.
 * 
 * @param ownerType class owning the implicit collection
 * @param fieldName name of the field in the ownerType. This field must be a concrete
 *            collection type or matching the default implementation type of the collection
 *            type.
 * @param itemFieldName element name of the implicit collection
 * @param itemType item type to be aliases be the itemFieldName
 * @throws InitializationException if no {@link ImplicitCollectionMapper} is available
 */
public void addImplicitCollection(Class ownerType, String fieldName, String itemFieldName,
  Class itemType) {
  addImplicitMap(ownerType, fieldName, itemFieldName, itemType, null);
}

代码示例来源:origin: org.apache.jmeter/ApacheJMeter_core

xstream.addImplicitMap(Templates.class,

相关文章