getOperatorOptions static method

String getOperatorOptions(
  1. LogicalOperators logicalOperators
)

Implementation

static String getOperatorOptions(LogicalOperators logicalOperators){
  switch (logicalOperators) {
    case LogicalOperators.AND:
      return "and";
    case LogicalOperators.OR:
      return "or";
    default:
      return "and";
  }
}