public enum ItemActivityType extends Enum<ItemActivityType>
| Enum Constant and Description |
|---|
COMMENT |
CREATION |
DELETE |
FILE |
RATING |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static ItemActivityType |
getByName(String value) |
String |
toString() |
static ItemActivityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemActivityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemActivityType CREATION
public static final ItemActivityType UPDATE
public static final ItemActivityType DELETE
public static final ItemActivityType COMMENT
public static final ItemActivityType FILE
public static final ItemActivityType RATING
public static ItemActivityType[] values()
for (ItemActivityType c : ItemActivityType.values()) System.out.println(c);
public static ItemActivityType 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 String toString()
toString in class Enum<ItemActivityType>public static ItemActivityType getByName(String value)
Copyright © 2014. All Rights Reserved.