public enum PushPullType extends Enum<PushPullType>
Enum Constant and Description |
---|
Both
Push/Pull both Source and Translated documents
|
Source
Push/Pull source documents only
|
Trans
Push/Pull Translated documents only
|
Modifier and Type | Method and Description |
---|---|
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.
|
public static final PushPullType Source
public static final PushPullType Trans
public static final PushPullType Both
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 nameNullPointerException
- if the argument is nullpublic static PushPullType fromString(String str)
str
- The string to parse.Copyright © 2015 Zanata Project. All rights reserved.