All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lifeonwalden.springscheduling.cronBuilder.model.All Maven / Gradle / Ivy

There is a newer version: 0.2.11
Show newest version
package com.lifeonwalden.springscheduling.cronBuilder.model;

/**
 * 所有
 * 
 * @author luhong
 *
 */
public class All implements FieldDefinition {


  @Override
  public String toExpression() {
    return "*";
  }

  @Override
  public boolean isValid(Class clazz) {
    return true;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy