# File lib/active_ldap/ldif.rb, line 748 def ==(other) other.is_a?(self.class) and @type == other.type and @criticality = other.criticality and @value == other.value end
# File lib/active_ldap/ldif.rb, line 724 def criticality? @criticality end
# File lib/active_ldap/ldif.rb, line 728 def to_a [@type, @criticality, @value] end
# File lib/active_ldap/ldif.rb, line 756 def normalize_criticality(criticality) case criticality when "true", true true when "false", false false when nil nil else raise ArgumentError, _("invalid criticality value: %s") % criticality.inspect end end
Generated with the Darkfish Rdoc Generator 2.