isAlternative method

bool isAlternative(
  1. bool isAlternative
)

Implementation

bool isAlternative(bool isAlternative) {
  switch (this) {
    case CronExpressionOutputFormat.AUTO:
      return isAlternative;
    case CronExpressionOutputFormat.ALLOWED_VALUES:
      return false;
    case CronExpressionOutputFormat.ALTERNATIVE_VALUES:
      return true;
  }
}