javaee:true-falseType

This simple type designates a boolean with only two
	permissible values

	- true
	- false

Complex Type Information

Model

Attributes

QName Type Fixed Default Use Inheritable Annotation
id xsd:ID optional

Used By

Source

<xsd:complexType name="true-falseType">
  <xsd:annotation>
    <xsd:documentation>This simple type designates a boolean with only two permissible values - true - false</xsd:documentation>
  </xsd:annotation>
  <xsd:simpleContent>
    <xsd:restriction base="javaee:xsdBooleanType">
      <xsd:pattern value="(true|false)"/>
    </xsd:restriction>
  </xsd:simpleContent>
</xsd:complexType>