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

org.snapscript.common.store.RemoteStatus Maven / Gradle / Ivy

package org.snapscript.common.store;

public enum RemoteStatus {
   SUCCESS,
   NOT_FOUND,
   ERROR;
   
   public boolean isNotFound(){
      return this == NOT_FOUND;
   }
   
   public boolean isSuccess() {
      return this == SUCCESS;
   }
   
   public boolean isError(){
      return this == ERROR;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy