Package org.gcube.portal.databook.shared
Enum PostType
- java.lang.Object
-
- java.lang.Enum<PostType>
-
- org.gcube.portal.databook.shared.PostType
-
- All Implemented Interfaces:
Serializable,Comparable<PostType>
public enum PostType extends Enum<PostType>
- Author:
- Massimiliano Assante ISTI-CNR
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PostTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PostType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JOIN
public static final PostType JOIN
-
SHARE
public static final PostType SHARE
-
PUBLISH
public static final PostType PUBLISH
-
TWEET
public static final PostType TWEET
-
CONNECTED
public static final PostType CONNECTED
-
ACCOUNTING
public static final PostType ACCOUNTING
Special case used when accounting
-
DISABLED
public static final PostType DISABLED
Special case used when a Feed is removed
-
-
Method Detail
-
values
public static PostType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PostType c : PostType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PostType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-