module Cassie::Statements::Statement::AllowFiltering

Public Instance Methods

allow_filtering?() click to toggle source
# File lib/cassie/statements/statement/allow_filtering.rb, line 21
def allow_filtering?
  self.class.allow_filtering?
end

Protected Instance Methods

build_allow_filtering_str() click to toggle source
# File lib/cassie/statements/statement/allow_filtering.rb, line 27
def build_allow_filtering_str
  if allow_filtering?
    "ALLOW FILTERING"
  else
    ""
  end
end