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

org.snapscript.core.constraint.transform.EmptySource Maven / Gradle / Ivy

package org.snapscript.core.constraint.transform;

import static java.util.Collections.EMPTY_LIST;

import java.util.List;

import org.snapscript.core.constraint.Constraint;

public class EmptySource implements ConstraintSource {
   
   public EmptySource() {
      super();
   }

   @Override
   public List getConstraints(Constraint constraint) {
      return EMPTY_LIST;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy