public enum AddLinkedProjectResult extends java.lang.Enum<AddLinkedProjectResult>
Enum Constant and Description |
---|
duplicated
Failed, the link project already exists.
|
failToOpen
Failed, failed in opening the link project.
|
itself
Failed, cannot link to current project itself.
|
success
Success
|
versionMismatch
Failed, version of the link project mismatch current project.
|
Modifier and Type | Method and Description |
---|---|
static AddLinkedProjectResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddLinkedProjectResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddLinkedProjectResult success
public static final AddLinkedProjectResult itself
public static final AddLinkedProjectResult duplicated
public static final AddLinkedProjectResult versionMismatch
public static final AddLinkedProjectResult failToOpen
public static AddLinkedProjectResult[] values()
for (AddLinkedProjectResult c : AddLinkedProjectResult.values()) System.out.println(c);
public static AddLinkedProjectResult 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 null