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

org.danilopianini.plagiarismdetector.utils.Language.kt Maven / Gradle / Ivy

There is a newer version: 9.0.6
Show newest version
package org.danilopianini.plagiarismdetector.utils

/**
 * An interface modeling a programming language.
 */
sealed interface Language {

    /**
     * The name of the language.
     */
    val name: String

    /**
     * The extensions of the files developed using this language.
     */
    val fileExtensions: Regex
}

/**
 * Java programming language.
 */
object Java : Language {
    override val name: String = "java"
    override val fileExtensions: Regex = Regex(".*.java$")
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy