Skip to content

Latest commit

 

History

History
182 lines (119 loc) · 2.73 KB

NextNQuartersComparable.md

File metadata and controls

182 lines (119 loc) · 2.73 KB

NextNQuartersComparable Class

Comparable for the NEXT_N_QUARTERS token

Since

1/4/2025

Author Zackary Frazier

Inheritance

DateLiteralComparable

Properties

token

Inherited

The token for the date literal

Signature

public token

Type

String

Methods

isEqual(fieldValue)

Returns whether fieldValue is in the NEXT_N_QUARTERS

Signature

public override Boolean isEqual(Datetime fieldValue)

Parameters

Name Type Description
fieldValue Datetime Datetime

Return Type

Boolean

,[object Object]


isGreaterThan(fieldValue)

Return whether fieldValue is greater than NEXT_N_QUARTERS

Signature

public override Boolean isGreaterThan(Datetime fieldValue)

Parameters

Name Type Description
fieldValue Datetime Datetime

Return Type

Boolean

,[object Object]


isGreaterThanOrEqual(fieldValue)

Inherited

Whether the date literal is greater than or equal to the field value

Signature

public Boolean isGreaterThanOrEqual(DateTime fieldValue)

Parameters

Name Type Description
fieldValue DateTime DateTime

Return Type

Boolean

,[object Object]


isLessThan(fieldValue)

Returns whether fieldValue is less than NEXT_N_QUARTERS

Signature

public override Boolean isLessThan(Datetime fieldValue)

Parameters

Name Type Description
fieldValue Datetime Datetime

Return Type

Boolean

,[object Object]


isLessThanOrEqual(fieldValue)

Inherited

Whether the date literal is less than or equal to the field value

Signature

public Boolean isLessThanOrEqual(DateTime fieldValue)

Parameters

Name Type Description
fieldValue DateTime DateTime

Return Type

Boolean

,[object Object]


isNotEqual(fieldValue)

Inherited

Whether the date literal is not equal to the field value

Signature

public Boolean isNotEqual(DateTime fieldValue)

Parameters

Name Type Description
fieldValue DateTime DateTime

Return Type

Boolean

,[object Object]


withToken(token)

Inherited

Sets the token for the date literal

Signature

public DateLiteralComparable withToken(String token)

Parameters

Name Type Description
token String String

Return Type

DateLiteralComparable

,[object Object]