Package com.podio.common
Enum ReferenceType
- java.lang.Object
-
- java.lang.Enum<ReferenceType>
-
- com.podio.common.ReferenceType
-
- All Implemented Interfaces:
Serializable,Comparable<ReferenceType>
public enum ReferenceType extends Enum<ReferenceType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIONALERTAPPAPP_FIELDAPP_REVISIONBULLETINCOMMENTCONVERSATIONFILEGRANTITEMITEM_PARTICIPATIONITEM_REVISIONITEM_VALUEMEETINGMESSAGENOTIFICATIONORGPROFILEQUESTIONQUESTION_ANSWERRATINGSPACESPACE_MEMBERSTATUSTASKTASK_ACTIONUSERVOTEWIDGET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReferenceTypegetByName(String value)StringtoString()static ReferenceTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ReferenceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALERT
public static final ReferenceType ALERT
-
APP
public static final ReferenceType APP
-
APP_FIELD
public static final ReferenceType APP_FIELD
-
APP_REVISION
public static final ReferenceType APP_REVISION
-
BULLETIN
public static final ReferenceType BULLETIN
-
COMMENT
public static final ReferenceType COMMENT
-
CONVERSATION
public static final ReferenceType CONVERSATION
-
MESSAGE
public static final ReferenceType MESSAGE
-
FILE
public static final ReferenceType FILE
-
ITEM
public static final ReferenceType ITEM
-
ITEM_REVISION
public static final ReferenceType ITEM_REVISION
-
ITEM_VALUE
public static final ReferenceType ITEM_VALUE
-
NOTIFICATION
public static final ReferenceType NOTIFICATION
-
ORG
public static final ReferenceType ORG
-
PROFILE
public static final ReferenceType PROFILE
-
RATING
public static final ReferenceType RATING
-
SPACE
public static final ReferenceType SPACE
-
SPACE_MEMBER
public static final ReferenceType SPACE_MEMBER
-
STATUS
public static final ReferenceType STATUS
-
TASK
public static final ReferenceType TASK
-
USER
public static final ReferenceType USER
-
WIDGET
public static final ReferenceType WIDGET
-
QUESTION
public static final ReferenceType QUESTION
-
QUESTION_ANSWER
public static final ReferenceType QUESTION_ANSWER
-
ACTION
public static final ReferenceType ACTION
-
MEETING
public static final ReferenceType MEETING
-
GRANT
public static final ReferenceType GRANT
-
TASK_ACTION
public static final ReferenceType TASK_ACTION
-
ITEM_PARTICIPATION
public static final ReferenceType ITEM_PARTICIPATION
-
VOTE
public static final ReferenceType VOTE
-
-
Method Detail
-
values
public static ReferenceType[] 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 (ReferenceType c : ReferenceType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReferenceType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<ReferenceType>
-
getByName
public static ReferenceType getByName(String value)
-
-