org.apache.xmlbeans.SimpleValue.getEnumValue()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(8.5k)|赞(0)|评价(0)|浏览(132)

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

SimpleValue.getEnumValue介绍

[英]Returns the value as a StringEnumAbstractBase.
[中]

代码示例

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

public StringEnumAbstractBase getEnumValue()
{
  return ((SimpleValue)underlyingXmlObject()).getEnumValue();
}

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

public StringEnumAbstractBase getEnumValue()
  { check_dated(); return _value == null ? null : ((SimpleValue)_value).getEnumValue(); }

代码示例来源:origin: com.github.pjfanning/xmlbeans

public StringEnumAbstractBase getEnumValue()
{
  return ((SimpleValue)underlyingXmlObject()).getEnumValue();
}

代码示例来源:origin: org.apache.xmlbeans/com.springsource.org.apache.xmlbeans

public StringEnumAbstractBase getEnumValue()
{
  return ((SimpleValue)underlyingXmlObject()).getEnumValue();
}

代码示例来源:origin: com.github.pjfanning/xmlbeans

public StringEnumAbstractBase getEnumValue()
  { check_dated(); return _value == null ? null : ((SimpleValue)_value).getEnumValue(); }

代码示例来源:origin: org.apache.xmlbeans/com.springsource.org.apache.xmlbeans

public StringEnumAbstractBase getEnumValue()
  { check_dated(); return _value == null ? null : ((SimpleValue)_value).getEnumValue(); }

代码示例来源:origin: org.n52.sensorweb/52n-xml-wns-v009

/**
 * Gets array of all "NotificationFormat" elements
 */
public net.opengis.wns.x00.NotificationFormatDocument.NotificationFormat.Enum[] getNotificationFormatArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(NOTIFICATIONFORMAT$0, targetList);
    net.opengis.wns.x00.NotificationFormatDocument.NotificationFormat.Enum[] result = new net.opengis.wns.x00.NotificationFormatDocument.NotificationFormat.Enum[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = (net.opengis.wns.x00.NotificationFormatDocument.NotificationFormat.Enum)((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getEnumValue();
    return result;
  }
}

代码示例来源:origin: org.wso2.bpel/ode-bpel-schemas

/**
 * Gets array of all "category" elements
 */
public org.apache.ode.bpel.dd.TCleanup.Category.Enum[] getCategoryArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(CATEGORY$0, targetList);
    org.apache.ode.bpel.dd.TCleanup.Category.Enum[] result = new org.apache.ode.bpel.dd.TCleanup.Category.Enum[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = (org.apache.ode.bpel.dd.TCleanup.Category.Enum)((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getEnumValue();
    return result;
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Gets array of all "ComparisonOperator" elements
 */
public net.opengis.ogc.ComparisonOperatorType.Enum[] getComparisonOperatorArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(COMPARISONOPERATOR$0, targetList);
    net.opengis.ogc.ComparisonOperatorType.Enum[] result = new net.opengis.ogc.ComparisonOperatorType.Enum[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = (net.opengis.ogc.ComparisonOperatorType.Enum)((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getEnumValue();
    return result;
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-sos-v100

/**
 * Gets array of all "responseMode" elements
 */
public net.opengis.sos.x10.ResponseModeType.Enum[] getResponseModeArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(RESPONSEMODE$14, targetList);
    net.opengis.sos.x10.ResponseModeType.Enum[] result = new net.opengis.sos.x10.ResponseModeType.Enum[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = (net.opengis.sos.x10.ResponseModeType.Enum)((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getEnumValue();
    return result;
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-wfs-v110

/**
 * Gets array of all "Operation" elements
 */
public net.opengis.wfs.OperationType.Enum[] getOperationArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(OPERATION$0, targetList);
    net.opengis.wfs.OperationType.Enum[] result = new net.opengis.wfs.OperationType.Enum[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = (net.opengis.wfs.OperationType.Enum)((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getEnumValue();
    return result;
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-gml-v311

/**
 * Gets array of all "aestheticCriteria" elements
 */
public net.opengis.gml.AesheticCriteriaType.Enum[] getAestheticCriteriaArray()
{
  synchronized (monitor())
  {
    check_orphaned();
    java.util.List targetList = new java.util.ArrayList();
    get_store().find_all_element_users(AESTHETICCRITERIA$16, targetList);
    net.opengis.gml.AesheticCriteriaType.Enum[] result = new net.opengis.gml.AesheticCriteriaType.Enum[targetList.size()];
    for (int i = 0, len = targetList.size() ; i < len ; i++)
      result[i] = (net.opengis.gml.AesheticCriteriaType.Enum)((org.apache.xmlbeans.SimpleValue)targetList.get(i)).getEnumValue();
    return result;
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-gml-v321

/**
 * Gets the "show" attribute
 */
public org.w3.x1999.xlink.ShowType.Enum getShow()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SHOW$12);
    if (target == null)
    {
      return null;
    }
    return (org.w3.x1999.xlink.ShowType.Enum)target.getEnumValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-gml-v321

/**
 * Gets the "show" attribute
 */
public org.w3.x1999.xlink.ShowType.Enum getShow()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SHOW$12);
    if (target == null)
    {
      return null;
    }
    return (org.w3.x1999.xlink.ShowType.Enum)target.getEnumValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-gml-v321

/**
 * Gets the "aggregationType" attribute
 */
public net.opengis.gml.x32.AggregationType.Enum getAggregationType()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(AGGREGATIONTYPE$0);
    if (target == null)
    {
      return null;
    }
    return (net.opengis.gml.x32.AggregationType.Enum)target.getEnumValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-gml-v321

/**
 * Gets the "show" attribute
 */
public org.w3.x1999.xlink.ShowType.Enum getShow()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SHOW$12);
    if (target == null)
    {
      return null;
    }
    return (org.w3.x1999.xlink.ShowType.Enum)target.getEnumValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-gml-v321

/**
 * Gets the "actuate" attribute
 */
public org.w3.x1999.xlink.ActuateType.Enum getActuate()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ACTUATE$14);
    if (target == null)
    {
      return null;
    }
    return (org.w3.x1999.xlink.ActuateType.Enum)target.getEnumValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-gml-v321

/**
 * Gets the "aggregationType" attribute
 */
public net.opengis.gml.x32.AggregationType.Enum getAggregationType()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(AGGREGATIONTYPE$2);
    if (target == null)
    {
      return null;
    }
    return (net.opengis.gml.x32.AggregationType.Enum)target.getEnumValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-gml-v321

/**
 * Gets the "show" attribute
 */
public org.w3.x1999.xlink.ShowType.Enum getShow()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SHOW$12);
    if (target == null)
    {
      return null;
    }
    return (org.w3.x1999.xlink.ShowType.Enum)target.getEnumValue();
  }
}

代码示例来源:origin: org.n52.sensorweb/52n-xml-gml-v321

/**
 * Gets the "aggregationType" attribute
 */
public net.opengis.gml.x32.AggregationType.Enum getAggregationType()
{
  synchronized (monitor())
  {
    check_orphaned();
    org.apache.xmlbeans.SimpleValue target = null;
    target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(AGGREGATIONTYPE$0);
    if (target == null)
    {
      return null;
    }
    return (net.opengis.gml.x32.AggregationType.Enum)target.getEnumValue();
  }
}

相关文章

微信公众号

最新文章

更多

SimpleValue类方法