gpt4 book ai didi

org.nuxeo.common.xmap.XMap.setValueFactory()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-18 14:08:40 26 4
gpt4 key购买 nike

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

XMap.setValueFactory介绍

[英]Sets a custom value factory for the given class.

Value factories are used to decode values from XML strings.
[中]为给定类设置自定义值工厂。
值工厂用于解码XML字符串中的值。

代码示例

代码示例来源:origin: org.nuxeo.runtime/nuxeo-connect-standalone

public static XMap createXmap() {
  @SuppressWarnings("hiding")
  XMap xmap = new XMap();
  xmap.setValueFactory(PackageType.class, new XValueFactory() {
    @Override
    public String serialize(Context arg0, Object arg1) {
  xmap.setValueFactory(Version.class, new XValueFactory() {
    @Override
    public String serialize(Context arg0, Object arg1) {
  xmap.setValueFactory(PackageDependency.class, new XValueFactory() {

代码示例来源:origin: org.nuxeo.common/nuxeo-common

public XAnnotatedMember(XMap xmap, XAccessor setter, XNode anno) {
  this.xmap = xmap;
  accessor = setter;
  path = new Path(anno.value());
  trim = anno.trim();
  type = setter.getType();
  valueFactory = xmap.getValueFactory(type);
  if (valueFactory == null && type.isEnum()) {
    valueFactory = new XValueFactory() {
      @Override
      public String serialize(Context arg0, Object arg1) {
        return ((Enum<?>) arg1).name();
      }
      @SuppressWarnings("unchecked")
      @Override
      public Object deserialize(Context arg0, String arg1) {
        return Enum.valueOf(type, arg1);
      }
    };
    xmap.setValueFactory(type, valueFactory);
  }
  xao = xmap.register(type);
}

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com