Hierarchy

Index

Constructors

constructor

  • new StiMonth(name: string, value?: number): StiMonth

Properties

name

name: string

value

value: number

Static 1

1: StiMonth = StiMonth.January

Static 10

10: StiMonth = StiMonth.October

Static 11

11: StiMonth = StiMonth.November

Static 12

12: StiMonth = StiMonth.December

Static 2

2: StiMonth = StiMonth.February

Static 3

3: StiMonth = StiMonth.March

Static 4

4: StiMonth = StiMonth.April

Static 5

5: StiMonth = StiMonth.May

Static 6

6: StiMonth = StiMonth.June

Static 7

7: StiMonth = StiMonth.July

Static 8

8: StiMonth = StiMonth.August

Static 9

9: StiMonth = StiMonth.September

Static April

April: StiMonth = new StiMonth("April", 4)

Static August

August: StiMonth = new StiMonth("August", 8)

Static December

December: StiMonth = new StiMonth("December", 12)

Static February

February: StiMonth = new StiMonth("February", 2)

Static January

January: StiMonth = new StiMonth("January", 1)

Static July

July: StiMonth = new StiMonth("July", 7)

Static June

June: StiMonth = new StiMonth("June", 6)

Static March

March: StiMonth = new StiMonth("March", 3)

Static May

May: StiMonth = new StiMonth("May", 5)

Static November

November: StiMonth = new StiMonth("November", 11)

Static October

October: StiMonth = new StiMonth("October", 10)

Static September

September: StiMonth = new StiMonth("September", 9)

Methods

compareTo

  • compareTo(value: Enum): number

toString

  • toString(): string

Static getName

  • getName(enumType: any, value: number): string
  • Parameters

    • enumType: any
    • value: number

    Returns string

Static getNames

  • getNames(enumType: any): string[]
  • Parameters

    • enumType: any

    Returns string[]

Static getValues

  • getValues(enumType: any): number[]
  • Parameters

    • enumType: any

    Returns number[]

Static parse

  • parse(enumType: any, value: string | number, upperFirstChar?: boolean): number
  • Parameters

    • enumType: any
    • value: string | number
    • Default value upperFirstChar: boolean = true

    Returns number

Generated using TypeDoc