com.vodafone360.people.datatypes
Enum ActivityItem.Flag

java.lang.Object
  extended by java.lang.Enum<ActivityItem.Flag>
      extended by com.vodafone360.people.datatypes.ActivityItem.Flag
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ActivityItem.Flag>
Enclosing class:
ActivityItem

public static enum ActivityItem.Flag
extends java.lang.Enum<ActivityItem.Flag>

Flags identifying ActivityItems as Status or Timeline events and already read


Enum Constant Summary
ALREADY_READ
          User already read the activity before
STATUS
          This activity will be shown in the status view.
TIMELINE
          This activity will be shown in the timeline view.
 
Field Summary
private  java.lang.String mFlagCode
           
 
Method Summary
private static ActivityItem.Flag findFlag(java.lang.String f)
          Find flag item for specified String
 java.lang.String getFlagCode()
          String value associated with flag item.
static ActivityItem.Flag valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ActivityItem.Flag[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ALREADY_READ

public static final ActivityItem.Flag ALREADY_READ
User already read the activity before


TIMELINE

public static final ActivityItem.Flag TIMELINE
This activity will be shown in the timeline view.


STATUS

public static final ActivityItem.Flag STATUS
This activity will be shown in the status view.

Field Detail

mFlagCode

private java.lang.String mFlagCode
Method Detail

values

public static ActivityItem.Flag[] 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 (ActivityItem.Flag c : ActivityItem.Flag.values())
    System.out.println(c);

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

valueOf

public static ActivityItem.Flag 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
java.lang.NullPointerException - if the argument is null

getFlagCode

public java.lang.String getFlagCode()
String value associated with flag item.

Returns:
String value for flag item.

findFlag

private static ActivityItem.Flag findFlag(java.lang.String f)
Find flag item for specified String

Parameters:
tag - String value to find flag item for


JavaDoc