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

io.edurt.datacap.parser.mysql.companion.ast.ParserOptions.kt Maven / Gradle / Ivy

There is a newer version: 2024.4.0
Show newest version
package io.edurt.datacap.parser.mysql.companion.ast

import java.util.Objects.requireNonNull

class ParserOptions(val decimalLiteralTreatment: DecimalLiteralTreatment = DecimalLiteralTreatment.REJECT,
                    val enhancedErrorHandlerEnabled: Boolean = true) {

    enum class DecimalLiteralTreatment {
        AS_DOUBLE,
        AS_DECIMAL,
        REJECT
    }

    init {
        requireNonNull(decimalLiteralTreatment, "decimalLiteralTreatment is null")
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy