本文整理汇总了Java中com.ctc.wstx.api.WstxInputProperties.UNKNOWN_ATTR_TYPE属性的典型用法代码示例。如果您正苦于以下问题:Java WstxInputProperties.UNKNOWN_ATTR_TYPE属性的具体用法?Java WstxInputProperties.UNKNOWN_ATTR_TYPE怎么用?Java WstxInputProperties.UNKNOWN_ATTR_TYPE使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类com.ctc.wstx.api.WstxInputProperties
的用法示例。
在下文中一共展示了WstxInputProperties.UNKNOWN_ATTR_TYPE属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getAttributeType
/**
* @return Schema (DTD, RNG, W3C Schema) based type of the attribute
* in specified index
*/
@Override
public final String getAttributeType(int index)
{
if (index == mIdAttrIndex && index >= 0) { // second check to ensure -1 is not passed
return "ID";
}
return (mValidator == null) ? WstxInputProperties.UNKNOWN_ATTR_TYPE :
mValidator.getAttributeType(index);
}
示例2: getAttributeType
@Override
public String getAttributeType(int index)
{
DTDAttribute attr = mAttrSpecs[index];
return (attr == null) ? WstxInputProperties.UNKNOWN_ATTR_TYPE :
attr.getValueTypeString();
}