public enum TsConfigFileType extends java.lang.Enum<TsConfigFileType>
| Modifier and Type | Method and Description |
|---|---|
static TsConfigFileType |
forNameIgnoreCase(java.lang.String name) |
static TsConfigFileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TsConfigFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TsConfigFileType TSCONFIG
public static final TsConfigFileType TSLINT
public static final TsConfigFileType VSCODE
public static final TsConfigFileType TSFMT
public static TsConfigFileType[] values()
for (TsConfigFileType c : TsConfigFileType.values()) System.out.println(c);
public static TsConfigFileType 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 TsConfigFileType forNameIgnoreCase(java.lang.String name)