module FlexValidations::Result

@abstract

Public Instance Methods

fail?() click to toggle source

@abstract

@return [Boolean]

# File lib/flex_validations/result.rb, line 16
def fail?
  raise 'not implemented'
end
Also aliased as: failure?
failure?()
Alias for: fail?
message() click to toggle source

@abstract

@return [FlexValidations::ResultMessage]

# File lib/flex_validations/result.rb, line 25
def message
  raise 'not implemented'
end
raw() click to toggle source

@abstract

@return [Object]

# File lib/flex_validations/result.rb, line 46
def raw
  raise 'not implemented'
end
success?() click to toggle source

@abstract

@return [Boolean]

# File lib/flex_validations/result.rb, line 9
def success?
  raise 'not implemented'
end
to_s() click to toggle source
# File lib/flex_validations/result.rb, line 50
def to_s
  message.to_s
end
validation() click to toggle source

@abstract Original validation of result

@return [FlexValidations::Validation]

# File lib/flex_validations/result.rb, line 32
def validation
  raise 'not implemented'
end
value() click to toggle source

@abstract Original object on which {#validation} was performed

@return [Object]

# File lib/flex_validations/result.rb, line 39
def value
  raise 'not implemented'
end