Class PropFilterType


  • public class PropFilterType
    extends Object
    The propFilter XML element specifies a query targeted at a specific calendar property (e.g., CATEGORIES) in the scope of the enclosing calendar component. A calendar property is said to match a propFilter if: * The propFilter XML element is empty and a property of the type specified by the "name" attribute exists in the enclosing calendar component; or: * The propFilter XML element contains a is-not-defined XML element and no property of the type specified by the "name" attribute exists in the enclosing calendar component; or: * The propFilter XML element contains a timeRange XML element and the property value overlaps the specified time range, and all specified paramFilter child XML elements also match the targeted property; or: * The propFilter XML element contains a textMatch XML element and the property value matches it, and all specified paramFilter child XML elements also match the targeted property;

    Java class for PropFilterType complex type.

    The following schema fragment specifies the expected content contained within this class.

     <complexType name="PropFilterType">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element ref="{urn:ietf:params:xml:ns:icalendar-2.0}baseProperty"/>
             <choice minOccurs="0">
               <element ref="{http://docs.oasis-open.org/ws-calendar/ns/soap}is-not-defined"/>
               <sequence>
                 <choice>
                   <element ref="{http://docs.oasis-open.org/ws-calendar/ns/soap}timeRange"/>
                   <element ref="{http://docs.oasis-open.org/ws-calendar/ns/soap}textMatch"/>
                 </choice>
                 <element ref="{http://docs.oasis-open.org/ws-calendar/ns/soap}paramFilter" maxOccurs="unbounded" minOccurs="0"/>
               </sequence>
             </choice>
           </sequence>
           <attribute name="test" type="{http://docs.oasis-open.org/ws-calendar/ns/soap}AnyofAllofType" default="anyof" />
         </restriction>
       </complexContent>
     </complexType>