Serializable
, Comparable<CoreConfig.HideDotFiles>
public static enum CoreConfig.HideDotFiles extends Enum<CoreConfig.HideDotFiles>
Enum Constant | Description |
---|---|
DOTGITONLY |
Hide only .git
|
FALSE |
Do not hide .files
|
TRUE |
Hide add .files
|
Modifier and Type | Method | Description |
---|---|---|
static CoreConfig.HideDotFiles |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static CoreConfig.HideDotFiles[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreConfig.HideDotFiles FALSE
public static final CoreConfig.HideDotFiles TRUE
public static final CoreConfig.HideDotFiles DOTGITONLY
public static CoreConfig.HideDotFiles[] values()
for (CoreConfig.HideDotFiles c : CoreConfig.HideDotFiles.values()) System.out.println(c);
public static CoreConfig.HideDotFiles valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2018. All rights reserved.