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

org.snapscript.core.convert.NumberType Maven / Gradle / Ivy

package org.snapscript.core.convert;

public enum NumberType {
   DECIMAL,
   HEXIDECIMAL,
   CHARACTER,
   NONE;
   
   public boolean isCharacter() {
      return this == CHARACTER;
   }
   
   public boolean isDecimal() {
      return this == DECIMAL;
   }
   
   public boolean isHexidecimal() {
      return this == HEXIDECIMAL;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy