本文整理汇总了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;
}
}
示例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();
}
});
}
}
示例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;
}
示例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();
}
示例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);
}
示例6: getActive
import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement
public int getActive() {
return active;
}
示例7: getVetList
import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement
public List<Vet> getVetList() {
if (vets == null) {
vets = new ArrayList<>();
}
return vets;
}
示例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);
}
示例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);
}
示例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;
}
示例11: getCommonPrefixes
import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
/**
* @return the commonPrefixes
*/
@XmlElement(name = "CommonPrefixes")
public String getCommonPrefixes() {
return commonPrefixes;
}
示例12: getId
import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement
public Integer getId() {
return id;
}
示例13: getSapId
import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement(name="sapId", namespace="http://mdw.centurylink.com/serviceTypes")
public String getSapId() { return sapId; }
示例14: getAtomLink
import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement(namespace = "http://www.w3.org/2005/Atom", name = "link")
public AtomLink getAtomLink() {
return atomLink;
}
示例15: setSize2
import javax.xml.bind.annotation.XmlElement; //导入依赖的package包/类
@XmlElement
public void setSize2(double size2)
{
this.size2 = size2;
}