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

org.snapscript.tree.define.MemberFieldData Maven / Gradle / Ivy

There is a newer version: 1.4.6
Show newest version
package org.snapscript.tree.define;

import org.snapscript.core.Evaluation;
import org.snapscript.core.constraint.Constraint;

public class MemberFieldData {

   private final Constraint constraint;
   private final Evaluation value;
   private final String alias;
   private final String name;
   
   public MemberFieldData(String name, String alias, Constraint constraint, Evaluation value) {
      this.constraint = constraint;
      this.value = value;
      this.alias = alias;
      this.name = name;
   }

   public String getName() {
      return name;
   }
   
   public String getAlias(){
      return alias;
   }

   public Evaluation getValue() {
      return value;
   }

   public Constraint getConstraint() {
      return constraint;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy