Class: ArelExtensions::Nodes::FormattedNumber
- Inherits:
-
Function
- Object
- Arel::Nodes::Function
- Function
- ArelExtensions::Nodes::FormattedNumber
- Defined in:
- lib/arel_extensions/nodes/formatted_number.rb
Constant Summary collapse
- RETURN_TYPE =
:string
Constants inherited from Function
ArelExtensions::Nodes::Function::MBSTRING
Instance Attribute Summary collapse
-
#flags ⇒ Object
Returns the value of attribute flags.
-
#locale ⇒ Object
Returns the value of attribute locale.
-
#original_string ⇒ Object
Returns the value of attribute original_string.
-
#precision ⇒ Object
Returns the value of attribute precision.
-
#prefix ⇒ Object
Returns the value of attribute prefix.
-
#scientific_notation ⇒ Object
Returns the value of attribute scientific_notation.
-
#suffix ⇒ Object
Returns the value of attribute suffix.
-
#type ⇒ Object
Returns the value of attribute type.
-
#width ⇒ Object
Returns the value of attribute width.
Instance Method Summary collapse
-
#initialize(expr) ⇒ FormattedNumber
constructor
A new instance of FormattedNumber.
Methods inherited from Function
#!=, #==, #as, #convert_to_date_node, #convert_to_datetime_node, #convert_to_node, #convert_to_number, #convert_to_string_node, #expr, #left, #return_type, #right, #type_of_attribute
Methods included from Predications
#cast, #convert_to_node, #imatches, #in, #matches, #not_in, #when
Methods inherited from Arel::Nodes::Function
Methods included from ArelExtensions::NullFunctions
#coalesce, #coalesce_blank, #if_present, #is_not_null, #is_null
Methods included from BooleanFunctions
Methods included from StringFunctions
#&, #[], #ai_collate, #ai_imatches, #ai_matches, #blank, #byte_length, #char_length, #ci_collate, #collate, #concat, #downcase, #edit_distance, #group_concat, #idoes_not_match, #idoes_not_match_all, #idoes_not_match_any, #imatches, #imatches_all, #imatches_any, #length, #levenshtein_distance, #locate, #ltrim, #md5, #not_blank, #regexp_replace, #repeat, #replace, #rtrim, #smatches, #soundex, #substring, #trim, #upcase
Methods included from MathFunctions
#*, #/, #abs, #ceil, #floor, #format_number, #log10, #pow, #power, #round, #std, #sum, #variance
Methods included from DateDuration
#day, #format, #format_date, #hour, #minute, #month, #second, #wday, #week, #year
Methods included from Comparators
Methods included from Math
Methods included from Aliases
Constructor Details
#initialize(expr) ⇒ FormattedNumber
Returns a new instance of FormattedNumber.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 8 def initialize expr # expr[1] = {locale: 'fr_FR', type: "e"/"f"/"d", prefix: "$ ", suffix: " %", flags: " +-#0", width: 5, precision: 6} col = expr.first @locale = expr[1][:locale] @prefix = expr[1][:prefix] @suffix = expr[1][:suffix] @width = expr[1][:width] @precision = expr[1][:precision] @type = expr[1][:type] @flags = expr[1][:flags] @scientific_notation = /[eE]/.match(expr[1][:type]) || false @original_string = expr[1][:original_string] super [col] end |
Instance Attribute Details
#flags ⇒ Object
Returns the value of attribute flags.
6 7 8 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 6 def flags @flags end |
#locale ⇒ Object
Returns the value of attribute locale.
6 7 8 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 6 def locale @locale end |
#original_string ⇒ Object
Returns the value of attribute original_string.
6 7 8 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 6 def original_string @original_string end |
#precision ⇒ Object
Returns the value of attribute precision.
6 7 8 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 6 def precision @precision end |
#prefix ⇒ Object
Returns the value of attribute prefix.
6 7 8 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 6 def prefix @prefix end |
#scientific_notation ⇒ Object
Returns the value of attribute scientific_notation.
6 7 8 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 6 def scientific_notation @scientific_notation end |
#suffix ⇒ Object
Returns the value of attribute suffix.
6 7 8 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 6 def suffix @suffix end |
#type ⇒ Object
Returns the value of attribute type.
6 7 8 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 6 def type @type end |
#width ⇒ Object
Returns the value of attribute width.
6 7 8 |
# File 'lib/arel_extensions/nodes/formatted_number.rb', line 6 def width @width end |