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

io.github.ye17186.myhelper.token.style.TokenStyle Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package io.github.ye17186.myhelper.token.style;

import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * @author ye17186
 * @since 2023-03-03
 */
@Getter
@AllArgsConstructor
public enum TokenStyle {

    UUID("uuid"),
    SIMPLE_UUID("simple-uuid"),
    RANDOM32("random-32"),
    RANDOM64("random-64"),
    RANDOM128("random-128"),
    TIK("tik");

    private String code;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy