|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<PushPullType>
org.zanata.client.commands.PushPullType
public enum PushPullType
| Enum Constant Summary | |
|---|---|
Both
Push/Pull both Source and Translated documents |
|
Source
Push/Pull source documents only |
|
Trans
Push/Pull Translated documents only |
|
| Method Summary | |
|---|---|
static PushPullType |
fromString(String str)
Parse a PushPullType value from a string case-insensitively, and disregarding leading and trailing spaces. |
static PushPullType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PushPullType[] |
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 PushPullType Source
public static final PushPullType Trans
public static final PushPullType Both
| Method Detail |
|---|
public static PushPullType[] values()
for (PushPullType c : PushPullType.values()) System.out.println(c);
public static PushPullType 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 PushPullType fromString(String str)
str - The string to parse.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||