class documentation

This class acts as a tagged union. Only one of the ``is_*`` methods will return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. :ivar file_properties.TemplateFilter.filter_none: No templates will be filtered from the result (all templates will be returned).

Method is_filter_none Check if the union tag is ``filter_none``.
Class Variable filter_none Undocumented
Method _process_custom_annotations Undocumented

Inherited from TemplateFilterBase:

Class Method filter_some Create an instance of this class set to the ``filter_some`` tag with value ``val``.
Method get_filter_some Only templates with an ID in the supplied list will be returned (a subset of templates will be returned).
Method is_filter_some Check if the union tag is ``filter_some``.
Method is_other Check if the union tag is ``other``.
Class Variable other Undocumented
Class Variable _catch_all Undocumented
def is_filter_none(self): (source)

Check if the union tag is ``filter_none``. :rtype: bool

filter_none = (source)

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)