public enum ActivityType extends Enum<ActivityType>
Enum Constant and Description |
---|
REVIEWED_TRANSLATION |
UPDATE_TRANSLATION |
UPLOAD_SOURCE_DOCUMENT |
UPLOAD_TRANSLATION_DOCUMENT |
Modifier and Type | Method and Description |
---|---|
static ActivityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivityType UPDATE_TRANSLATION
public static final ActivityType REVIEWED_TRANSLATION
public static final ActivityType UPLOAD_SOURCE_DOCUMENT
public static final ActivityType UPLOAD_TRANSLATION_DOCUMENT
public static ActivityType[] values()
for (ActivityType c : ActivityType.values()) System.out.println(c);
public static ActivityType 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 nullCopyright © 2015 Zanata Project. All rights reserved.