public enum ProjectConfigEntryType extends Enum<ProjectConfigEntryType>
| Enum Constant and Description |
|---|
ARRAY |
BOOLEAN |
INT |
LIST |
LONG |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static ProjectConfigEntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectConfigEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectConfigEntryType STRING
public static final ProjectConfigEntryType INT
public static final ProjectConfigEntryType LONG
public static final ProjectConfigEntryType BOOLEAN
public static final ProjectConfigEntryType LIST
public static final ProjectConfigEntryType ARRAY
public static ProjectConfigEntryType[] values()
for (ProjectConfigEntryType c : ProjectConfigEntryType.values()) System.out.println(c);
public static ProjectConfigEntryType 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.