class Ferret::Selectee

Attributes

field[R]
interpretation[R]
output_name[R]
stage[R]

Public Class Methods

new(stage, field, output_name, interpretation, star_p = false) click to toggle source
Calls superclass method
# File lib/sql-ferret.rb, line 1636
def initialize stage, field,
    output_name, interpretation,
    star_p = false
  raise 'type mismatch' unless field.is_a? Ferret::Field
  raise 'type mismatch' unless output_name.is_a? String
  super()
  @stage = stage
  @field = field
  @output_name = output_name
  @interpretation = interpretation
  @star_p = star_p
  return
end

Public Instance Methods

star?() click to toggle source
# File lib/sql-ferret.rb, line 1650
def star?
  return @star_p
end