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

io.github.kiryu1223.drink.ext.SqlTimeUnit Maven / Gradle / Ivy

There is a newer version: 1.0.14
Show newest version
package io.github.kiryu1223.drink.ext;

import io.github.kiryu1223.drink.config.Config;

public enum SqlTimeUnit implements ISqlKeywords
{
    YEAR,
    MONTH,
    WEEK,
    DAY,
    HOUR,
    MINUTE,
    SECOND,
    MILLISECOND,
    MICROSECOND,
    NANOSECOND,
    ;

    @Override
    public String getKeyword(Config config)
    {
        return name();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy