Merge pull request #197 from puppet4/develop

ConfigFileTypeEnum 枚举字段添加注释
pull/202/head
龙台 Long Tai 2 years ago committed by GitHub
commit 6099983e7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,11 +10,34 @@ import lombok.Getter;
@Getter
public enum ConfigFileTypeEnum {
/**
* properties
*/
PROPERTIES("properties"),
/**
* xml
*/
XML("xml"),
/**
* json
*/
JSON("json"),
/**
* yml
*/
YML("yml"),
/**
* yaml
*/
YAML("yaml"),
/**
* txt
*/
TXT("txt");
private final String value;

Loading…
Cancel
Save