com.atlassian.theplugin.commons.crucible.api.model.notification
Enum CrucibleNotificationType

java.lang.Object
  extended by java.lang.Enum<CrucibleNotificationType>
      extended by com.atlassian.theplugin.commons.crucible.api.model.notification.CrucibleNotificationType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CrucibleNotificationType>

public enum CrucibleNotificationType
extends java.lang.Enum<CrucibleNotificationType>


Enum Constant Summary
EXCEPTION_RAISED
           
NEW_GENERAL_COMMENT
           
NEW_REPLY
           
NEW_REVIEW
           
NEW_REVIEW_ITEM
           
NEW_VERSIONED_COMMENT
           
NOT_VISIBLE_REVIEW
           
REMOVED_GENERAL_COMMENT
           
REMOVED_REPLY
           
REMOVED_REVIEW_ITEM
           
REMOVED_VERSIONED_COMMENT
           
REVIEW_COMPLETED
           
REVIEW_STATE_CHANGED
           
REVIEWER_COMPLETED
           
UPDATED_GENERAL_COMMENT
           
UPDATED_REPLY
           
UPDATED_VERSIONED_COMMENT
           
 
Method Summary
static CrucibleNotificationType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CrucibleNotificationType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NEW_REVIEW

public static final CrucibleNotificationType NEW_REVIEW

NOT_VISIBLE_REVIEW

public static final CrucibleNotificationType NOT_VISIBLE_REVIEW

NEW_REVIEW_ITEM

public static final CrucibleNotificationType NEW_REVIEW_ITEM

REMOVED_REVIEW_ITEM

public static final CrucibleNotificationType REMOVED_REVIEW_ITEM

NEW_GENERAL_COMMENT

public static final CrucibleNotificationType NEW_GENERAL_COMMENT

NEW_VERSIONED_COMMENT

public static final CrucibleNotificationType NEW_VERSIONED_COMMENT

NEW_REPLY

public static final CrucibleNotificationType NEW_REPLY

UPDATED_GENERAL_COMMENT

public static final CrucibleNotificationType UPDATED_GENERAL_COMMENT

UPDATED_VERSIONED_COMMENT

public static final CrucibleNotificationType UPDATED_VERSIONED_COMMENT

UPDATED_REPLY

public static final CrucibleNotificationType UPDATED_REPLY

REMOVED_GENERAL_COMMENT

public static final CrucibleNotificationType REMOVED_GENERAL_COMMENT

REMOVED_VERSIONED_COMMENT

public static final CrucibleNotificationType REMOVED_VERSIONED_COMMENT

REMOVED_REPLY

public static final CrucibleNotificationType REMOVED_REPLY

REVIEWER_COMPLETED

public static final CrucibleNotificationType REVIEWER_COMPLETED

REVIEW_COMPLETED

public static final CrucibleNotificationType REVIEW_COMPLETED

EXCEPTION_RAISED

public static final CrucibleNotificationType EXCEPTION_RAISED

REVIEW_STATE_CHANGED

public static final CrucibleNotificationType REVIEW_STATE_CHANGED
Method Detail

values

public static final CrucibleNotificationType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(CrucibleNotificationType c : CrucibleNotificationType.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static CrucibleNotificationType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name


Copyright © 2008-2009 Atlassian Pty Ltd. All Rights Reserved.