Class: ActiveLdap::Schema::Syntaxes::Integer
- Inherits:
-
Base
- Object
- Base
- ActiveLdap::Schema::Syntaxes::Integer
show all
- Defined in:
- lib/active_ldap/schema/syntaxes.rb
Constant Summary
Constants inherited
from Base
Base::PRINTABLE_CHARACTER, Base::SYNTAXES, Base::UNPRINTABLE_CHARACTER
Instance Method Summary
collapse
Methods inherited from Base
#binary?, #valid?, #validate
included
Instance Method Details
#normalize_value(value) ⇒ Object
261
262
263
264
265
266
267
|
# File 'lib/active_ldap/schema/syntaxes.rb', line 261
def normalize_value(value)
if value.is_a?(::Integer)
value.to_s
else
value
end
end
|
#type_cast(value) ⇒ Object
252
253
254
255
256
257
258
259
|
# File 'lib/active_ldap/schema/syntaxes.rb', line 252
def type_cast(value)
return value if value.nil?
begin
Integer(value)
rescue ArgumentError
value
end
end
|