当前位置: 首页>>代码示例>>Java>>正文


Java XmlElement类代码示例

本文整理汇总了Java中javax.xml.bind.annotation.XmlElement的典型用法代码示例。如果您正苦于以下问题:Java XmlElement类的具体用法?Java XmlElement怎么用?Java XmlElement使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


XmlElement类属于javax.xml.bind.annotation包,在下文中一共展示了XmlElement类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getStoreValue

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
/**
 * Converts the object to its string representation.
 *
 * @return String representation of the object.
 */
@XmlElement(name = "Value")
public String getStoreValue() {
    byte[] value = this.getRawValue();
    if (value != null) {
        StringBuilder sb = new StringBuilder();
        int i = 0;
        sb.append("0x");
        for (byte b : value) {
            sb.append(String.format("%02x", b));
        }
        return sb.toString();
    }
    else {
        return null;
    }
}
 
开发者ID:Microsoft,项目名称:elastic-db-tools-for-java,代码行数:22,代码来源:ShardKey.java

示例2: dealXmlElementAnnotation

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
/**
 * 处理@{@link XmlElement}注解
 */
@SuppressWarnings("unchecked")
protected void dealXmlElementAnnotation(Element rootElement, Field field, Object entity) {
  XmlElement xmlElementAnnotation = field.getAnnotation(XmlElement.class);
  Element element = rootElement.element(xmlElementAnnotation.name());
  if (Objects.nonNull(element)) {
    Optional<Object> valueOptional = super
        .elementValue(rootElement, field.getType(), xmlElementAnnotation.name());
    valueOptional.ifPresent(value -> {
      try {
        field.set(entity, value);
      } catch (IllegalAccessException e) {
        e.printStackTrace();
      }
    });
  }
}
 
开发者ID:minlia-projects,项目名称:minlia-iot,代码行数:20,代码来源:XmlApiDeserializer.java

示例3: getStatus

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement(name = "status")
@Schema(
    name = "status",
    title = "pet status in the store"//,
    //_enum = {"available", "pending", "sold"}
)
public String getStatus() {
    return status;
}
 
开发者ID:eclipse,项目名称:microprofile-open-api,代码行数:10,代码来源:Pet.java

示例4: getSqueezedName

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
/**
 * Returns the "squeezed name" of this element.
 *
 * @see CClassInfo#getSqueezedName()
 */
@XmlElement
public String getSqueezedName() {
    if(squeezedName!=null)  return squeezedName;

    StringBuilder b = new StringBuilder();
    CClassInfo s = getScope();
    if(s!=null)
        b.append(s.getSqueezedName());
    if(className!=null)
        b.append(className);
    else
        b.append( model.getNameConverter().toClassName(tagName.getLocalPart()));
    return b.toString();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:CElementInfo.java

示例5: getSpecialties

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement
public List<Specialty> getSpecialties() {
    List<Specialty> sortedSpecs = new ArrayList<>(getSpecialtiesInternal());
    PropertyComparator.sort(sortedSpecs,
            new MutableSortDefinition("name", true, true));
    return Collections.unmodifiableList(sortedSpecs);
}
 
开发者ID:awslabs,项目名称:amazon-ecs-java-microservices,代码行数:8,代码来源:Vet.java

示例6: getActive

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement
public int getActive() {
    return active;
}
 
开发者ID:eclipse,项目名称:microprofile-sandbox,代码行数:5,代码来源:TransactionStatisticsElement.java

示例7: getVetList

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement
public List<Vet> getVetList() {
    if (vets == null) {
        vets = new ArrayList<>();
    }
    return vets;
}
 
开发者ID:awslabs,项目名称:amazon-ecs-java-microservices,代码行数:8,代码来源:Vets.java

示例8: getParameterQName

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
private static QName getParameterQName(Method method, WebParam webParam, XmlElement xmlElem, String paramDefault) {
    String webParamName = null;
    if (webParam != null && webParam.name().length() > 0) {
        webParamName = webParam.name();
    }
    String xmlElemName = null;
    if (xmlElem != null && !xmlElem.name().equals("##default")) {
        xmlElemName = xmlElem.name();
    }
    if (xmlElemName != null && webParamName != null && !xmlElemName.equals(webParamName)) {
        throw new RuntimeModelerException("@XmlElement(name)="+xmlElemName+" and @WebParam(name)="+webParamName+" are different for method " +method);
    }
    String localPart = paramDefault;
    if (webParamName != null) {
        localPart = webParamName;
    } else if (xmlElemName != null) {
        localPart =  xmlElemName;
    }

    String webParamNS = null;
    if (webParam != null && webParam.targetNamespace().length() > 0) {
        webParamNS = webParam.targetNamespace();
    }
    String xmlElemNS = null;
    if (xmlElem != null && !xmlElem.namespace().equals("##default")) {
        xmlElemNS = xmlElem.namespace();
    }
    if (xmlElemNS != null && webParamNS != null && !xmlElemNS.equals(webParamNS)) {
        throw new RuntimeModelerException("@XmlElement(namespace)="+xmlElemNS+" and @WebParam(targetNamespace)="+webParamNS+" are different for method " +method);
    }
    String ns = "";
    if (webParamNS != null) {
        ns = webParamNS;
    } else if (xmlElemNS != null) {
        ns =  xmlElemNS;
    }

    return new QName(ns, localPart);
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:40,代码来源:RuntimeModeler.java

示例9: getReturnQName

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
private static QName getReturnQName(Method method, WebResult webResult, XmlElement xmlElem) {
    String webResultName = null;
    if (webResult != null && webResult.name().length() > 0) {
        webResultName = webResult.name();
    }
    String xmlElemName = null;
    if (xmlElem != null && !xmlElem.name().equals("##default")) {
        xmlElemName = xmlElem.name();
    }
    if (xmlElemName != null && webResultName != null && !xmlElemName.equals(webResultName)) {
        throw new RuntimeModelerException("@XmlElement(name)="+xmlElemName+" and @WebResult(name)="+webResultName+" are different for method " +method);
    }
    String localPart = RETURN;
    if (webResultName != null) {
        localPart = webResultName;
    } else if (xmlElemName != null) {
        localPart =  xmlElemName;
    }

    String webResultNS = null;
    if (webResult != null && webResult.targetNamespace().length() > 0) {
        webResultNS = webResult.targetNamespace();
    }
    String xmlElemNS = null;
    if (xmlElem != null && !xmlElem.namespace().equals("##default")) {
        xmlElemNS = xmlElem.namespace();
    }
    if (xmlElemNS != null && webResultNS != null && !xmlElemNS.equals(webResultNS)) {
        throw new RuntimeModelerException("@XmlElement(namespace)="+xmlElemNS+" and @WebResult(targetNamespace)="+webResultNS+" are different for method " +method);
    }
    String ns = "";
    if (webResultNS != null) {
        ns = webResultNS;
    } else if (xmlElemNS != null) {
        ns =  xmlElemNS;
    }

    return new QName(ns, localPart);
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:40,代码来源:RuntimeModeler.java

示例10: getOwner

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement(namespace = "http://www.itunes.com/dtds/podcast-1.0.dtd")
public Owner getOwner() {
    return owner;
}
 
开发者ID:openaudible,项目名称:openaudible,代码行数:5,代码来源:Channel.java

示例11: getCommonPrefixes

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
/**
 * @return the commonPrefixes
 */
@XmlElement(name = "CommonPrefixes")
public String getCommonPrefixes() {
  return commonPrefixes;
}
 
开发者ID:adobe,项目名称:S3Mock,代码行数:8,代码来源:ListBucketResult.java

示例12: getId

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement
public Integer getId() {
	return id;
}
 
开发者ID:PacktPublishing,项目名称:Spring-5.0-Cookbook,代码行数:5,代码来源:Department.java

示例13: getSapId

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement(name="sapId", namespace="http://mdw.centurylink.com/serviceTypes")
public String getSapId() { return sapId; }
 
开发者ID:CenturyLinkCloud,项目名称:mdw-demo,代码行数:3,代码来源:Employee.java

示例14: getAtomLink

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement(namespace = "http://www.w3.org/2005/Atom", name = "link")
public AtomLink getAtomLink() {
    return atomLink;
}
 
开发者ID:openaudible,项目名称:openaudible,代码行数:5,代码来源:Channel.java

示例15: setSize2

import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement
public void setSize2(double size2)
{
	this.size2 = size2;
}
 
开发者ID:fossasia,项目名称:zooracle,代码行数:6,代码来源:ToadData.java


注:本文中的javax.xml.bind.annotation.XmlElement类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。