public enum ResolutionStatus extends java.lang.Enum<ResolutionStatus>
| Enum Constant and Description |
|---|
INCOMPLETE_TYPE_INFERENCE |
OTHER_ERROR |
RECEIVER_PRESENCE_ERROR |
RECEIVER_TYPE_ERROR |
SUCCESS |
UNKNOWN_STATUS |
UNSAFE_CALL_ERROR |
| Modifier and Type | Field and Description |
|---|---|
static java.util.EnumSet<ResolutionStatus>[] |
SEVERITY_LEVELS |
| Modifier and Type | Method and Description |
|---|---|
ResolutionStatus |
combine(ResolutionStatus other) |
boolean |
isSuccess() |
static ResolutionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResolutionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResolutionStatus UNKNOWN_STATUS
public static final ResolutionStatus UNSAFE_CALL_ERROR
public static final ResolutionStatus OTHER_ERROR
public static final ResolutionStatus RECEIVER_TYPE_ERROR
public static final ResolutionStatus RECEIVER_PRESENCE_ERROR
public static final ResolutionStatus INCOMPLETE_TYPE_INFERENCE
public static final ResolutionStatus SUCCESS
public static final java.util.EnumSet<ResolutionStatus>[] SEVERITY_LEVELS
public static ResolutionStatus[] values()
for (ResolutionStatus c : ResolutionStatus.values()) System.out.println(c);
public static ResolutionStatus 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 boolean isSuccess()
public ResolutionStatus combine(ResolutionStatus other)