enum

Frequency

Inherits Enum < Comparable < Value < Object

Constants

Never = 0
Daily = 1
Weekly = 2
EveryOtherWeek = 3
TwiceAMonth = 4
Every4Weeks = 5
Monthly = 6
EveryOtherMonth = 7
Every3Months = 8
Every4Months = 9
TwiceAYear = 10
Yearly = 11
EveryOtherYear = 12

Instance methods

daily?

Returns true if this enum value equals Daily

Source
every3_months?

Returns true if this enum value equals Every3Months

Source
every4_months?

Returns true if this enum value equals Every4Months

Source
every4_weeks?

Returns true if this enum value equals Every4Weeks

Source
every_other_month?

Returns true if this enum value equals EveryOtherMonth

Source
every_other_week?

Returns true if this enum value equals EveryOtherWeek

Source
every_other_year?

Returns true if this enum value equals EveryOtherYear

Source
monthly?

Returns true if this enum value equals Monthly

Source
never?

Returns true if this enum value equals Never

Source
twice_a_month?

Returns true if this enum value equals TwiceAMonth

Source
twice_a_year?

Returns true if this enum value equals TwiceAYear

Source
weekly?

Returns true if this enum value equals Weekly

Source
yearly?

Returns true if this enum value equals Yearly

Source