public enum JsonFileType extends java.lang.Enum<JsonFileType> implements EnumConverter<JsonFileType>
| Enum Constant and Description |
|---|
I18NEXT_JSON |
NESTJS_I18N |
| Modifier and Type | Method and Description |
|---|---|
static JsonFileType |
from(java.lang.String value) |
java.lang.String |
to(JsonFileType v) |
static JsonFileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JsonFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JsonFileType I18NEXT_JSON
public static final JsonFileType NESTJS_I18N
public static JsonFileType[] values()
for (JsonFileType c : JsonFileType.values()) System.out.println(c);
public static JsonFileType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static JsonFileType from(java.lang.String value)
public java.lang.String to(JsonFileType v)
to in interface EnumConverter<JsonFileType>