|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<Phase>
com.aragost.javahg.Phase
public enum Phase
Enum type to represent phases introduced in Mercurial 2.1
| Enum Constant Summary | |
|---|---|
DRAFT
|
|
PUBLIC
|
|
SECRET
|
|
| Method Summary | |
|---|---|
static Phase |
fromText(String s)
Return the Phase that correspond to the specified text. |
static Phase |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Phase[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Phase PUBLIC
public static final Phase DRAFT
public static final Phase SECRET
| Method Detail |
|---|
public static Phase[] values()
for (Phase c : Phase.values()) System.out.println(c);
public static Phase valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic static Phase fromText(String s)
The text is what mercurial uses in the command output (i.e. public, draft, or secret).
s -
IllegalArgumentException - if no phase correspond to the specified text
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||