|
get_composed_filter(*filters)
Returns a node filter that is the composition of all filter functions
passed as arguments. |
|
|
|
get_filter_on_type(allowed_types)
Returns a node filter that only let nodes whose type is in the
allowed_types list to pass through. |
|
|
|
get_reverse_filter(node_filter)
Returns a new filter that lets throught all nodes normally filtered
out by node_filter, and filters out the one normally passed. |
|
|
|
filter_no_default(node_in)
A filter that lets all nodes through, except attributes with a
default value and attribute groups containing only such attributes. |
|
|
|
filter_only_default(node_in)
A filter that lets all nodes through, except attributes with a
default value and attribute groups containing only such attributes. |
|
|
|
filter_no_missing(node_in)
A filter that lets all nodes through, except required attributes
missing a value. |
|
|
|
filter_only_missing(node_in)
A filter that only let through obj and groups containing attributes
with missing values, as well as those attributes. |
|
|
|
filter_only_required(node_in)
A filter that only lets through required attribute nodes, aka those
attributes without a default value in LIO configuration policy. |
|
|