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

com.github.chaosfirebolt.converter.BaseParser Maven / Gradle / Ivy

package com.github.chaosfirebolt.converter;

import com.github.chaosfirebolt.converter.constants.IntegerType;

sealed abstract class BaseParser implements Parser permits ArabicParser, RomanParser {

  /**
   * Integer type for this parser
   */
  protected final IntegerType integerType;

  protected BaseParser(IntegerType integerType) {
    this.integerType = integerType;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy