class Quartz::VerificationErrors

Included Modules

Defined in:

quartz/errors.cr

Instance Method Summary

Instance methods inherited from class Reference

==(other : Quartz::Any) ==

Instance methods inherited from class Object

===(other : Quartz::Any) ===

Instance Method Detail

def [](attribute) #

[View source]
def add(attribute : Symbol, message : String) #

[View source]
def add(attribute : Symbol, *errors : String) #

[View source]
def clear #

[View source]
def each(&) #
Description copied from module Enumerable({Symbol, String})

Must yield this collection's elements to the block.


[View source]
def empty? #
Description copied from module Enumerable({Symbol, String})

Returns true if self is empty, false otherwise.

([] of Int32).empty? # => true
([1]).empty?         # => false

[View source]
def full_messages #

[View source]
def include?(attribute : Symbol) #

[View source]
def messages #

[View source]
def size #
Description copied from module Enumerable({Symbol, String})

Returns the number of elements in the collection.

[1, 2, 3, 4].size # => 4

[View source]