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

org.snapscript.studio.agent.runtime.EmptyValue Maven / Gradle / Ivy

The newest version!
package org.snapscript.studio.agent.runtime;

public class EmptyValue implements RuntimeValue {

   public final String name;

   public EmptyValue() {
      this(null);
   }

   public EmptyValue(String name) {
      this.name = name;
   }

   @Override
   public String getName() {
      return name;
   }

   @Override
   public String getValue() {
      return null;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy