public enum LocationSettingType extends java.lang.Enum<LocationSettingType>
| Enum Constant and Description |
|---|
DEDUCED
User hasn't defined location but the IDE discovered it automatically.
|
EXPLICIT_CORRECT |
EXPLICIT_INCORRECT
User defined location but it's incorrect.
|
UNKNOWN
User hasn't defined location and the IDE was unable to discover it automatically.
|
| Modifier and Type | Method and Description |
|---|---|
java.awt.Color |
getColor() |
java.lang.String |
getDescription(ProjectSystemId externalSystemId) |
static LocationSettingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LocationSettingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocationSettingType DEDUCED
public static final LocationSettingType UNKNOWN
public static final LocationSettingType EXPLICIT_INCORRECT
public static final LocationSettingType EXPLICIT_CORRECT
public static LocationSettingType[] values()
for (LocationSettingType c : LocationSettingType.values()) System.out.println(c);
public static LocationSettingType 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 java.lang.String getDescription(ProjectSystemId externalSystemId)
public java.awt.Color getColor()