net.neurowork.mobile.android.fw
Enum ActivityType

java.lang.Object
  extended by java.lang.Enum<ActivityType>
      extended by net.neurowork.mobile.android.fw.ActivityType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ActivityType>

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

Enum class where is declared all existing activity type

Author:
Jorge E. Villaverde, Manuel Mora Cuesta, Jonatan Alcocer Luna

Enum Constant Summary
AUDIO_ACTIVITY
           
BUTTONS_ACTIVITY
           
CALENDAR_ACTIVITY
           
COVER_ACTIVITY
           
FORM_ACTIVITY
           
IMAGE_GALLERY_ACTIVITY
           
IMAGE_LIST_ACTIVITY
           
IMAGE_TEXT_DESCRIPTION_ACTIVITY
           
IMAGE_ZOOM_ACTIVITY
           
LIST_ACTIVITY
           
MAP_ACTIVITY
           
PDF_ACTIVITY
           
QR_ACTIVITY
           
QUIZ_ACTIVITY
           
SOUND_ACTIVITY
           
VIDEO_ACTIVITY
           
WEB_ACTIVITY
           
 
Method Summary
static ActivityType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ActivityType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

COVER_ACTIVITY

public static final ActivityType COVER_ACTIVITY

BUTTONS_ACTIVITY

public static final ActivityType BUTTONS_ACTIVITY

IMAGE_TEXT_DESCRIPTION_ACTIVITY

public static final ActivityType IMAGE_TEXT_DESCRIPTION_ACTIVITY

IMAGE_LIST_ACTIVITY

public static final ActivityType IMAGE_LIST_ACTIVITY

LIST_ACTIVITY

public static final ActivityType LIST_ACTIVITY

VIDEO_ACTIVITY

public static final ActivityType VIDEO_ACTIVITY

IMAGE_ZOOM_ACTIVITY

public static final ActivityType IMAGE_ZOOM_ACTIVITY

IMAGE_GALLERY_ACTIVITY

public static final ActivityType IMAGE_GALLERY_ACTIVITY

WEB_ACTIVITY

public static final ActivityType WEB_ACTIVITY

QR_ACTIVITY

public static final ActivityType QR_ACTIVITY

FORM_ACTIVITY

public static final ActivityType FORM_ACTIVITY

MAP_ACTIVITY

public static final ActivityType MAP_ACTIVITY

PDF_ACTIVITY

public static final ActivityType PDF_ACTIVITY

SOUND_ACTIVITY

public static final ActivityType SOUND_ACTIVITY

CALENDAR_ACTIVITY

public static final ActivityType CALENDAR_ACTIVITY

QUIZ_ACTIVITY

public static final ActivityType QUIZ_ACTIVITY

AUDIO_ACTIVITY

public static final ActivityType AUDIO_ACTIVITY
Method Detail

values

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

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

valueOf

public static ActivityType 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