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

org.snapscript.core.result.NormalResult Maven / Gradle / Ivy

package org.snapscript.core.result;

public class NormalResult extends Result {
   
   private final Object value;
   
   public NormalResult() {
      this(null);
   }
   
   public NormalResult(Object value) {
      this.value = value;
   }
   
   @Override
   public boolean isNormal(){
      return true;
   }

   @Override
   public  T getValue() {
      return (T)value;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy