org.apache.airavata.persistance.registry.jpa
Enum ResourceType

java.lang.Object
  extended by java.lang.Enum<ResourceType>
      extended by org.apache.airavata.persistance.registry.jpa.ResourceType
All Implemented Interfaces:
Serializable, Comparable<ResourceType>

public enum ResourceType
extends Enum<ResourceType>


Enum Constant Summary
APPLICATION_DESCRIPTOR
           
CONFIGURATION
           
EXECUTION_ERROR
           
EXPERIMENT
           
EXPERIMENT_DATA
           
EXPERIMENT_METADATA
           
GATEWAY
           
GATEWAY_WORKER
           
GFAC_JOB_DATA
           
GFAC_JOB_STATUS
           
GRAM_DATA
           
HOST_DESCRIPTOR
           
NODE_DATA
           
PROJECT
           
PUBLISHED_WORKFLOW
           
SERVICE_DESCRIPTOR
           
USER
           
USER_WORKFLOW
           
WORKFLOW_DATA
           
 
Method Summary
static ResourceType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ResourceType[] 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

GATEWAY

public static final ResourceType GATEWAY

PROJECT

public static final ResourceType PROJECT

USER

public static final ResourceType USER

SERVICE_DESCRIPTOR

public static final ResourceType SERVICE_DESCRIPTOR

PUBLISHED_WORKFLOW

public static final ResourceType PUBLISHED_WORKFLOW

USER_WORKFLOW

public static final ResourceType USER_WORKFLOW

HOST_DESCRIPTOR

public static final ResourceType HOST_DESCRIPTOR

APPLICATION_DESCRIPTOR

public static final ResourceType APPLICATION_DESCRIPTOR

EXPERIMENT

public static final ResourceType EXPERIMENT

CONFIGURATION

public static final ResourceType CONFIGURATION

GATEWAY_WORKER

public static final ResourceType GATEWAY_WORKER

EXPERIMENT_DATA

public static final ResourceType EXPERIMENT_DATA

EXPERIMENT_METADATA

public static final ResourceType EXPERIMENT_METADATA

WORKFLOW_DATA

public static final ResourceType WORKFLOW_DATA

NODE_DATA

public static final ResourceType NODE_DATA

GRAM_DATA

public static final ResourceType GRAM_DATA

EXECUTION_ERROR

public static final ResourceType EXECUTION_ERROR

GFAC_JOB_DATA

public static final ResourceType GFAC_JOB_DATA

GFAC_JOB_STATUS

public static final ResourceType GFAC_JOB_STATUS
Method Detail

values

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

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

valueOf

public static ResourceType 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 name
NullPointerException - if the argument is null


Copyright © 2011-2013 The Apache Software Foundation. All Rights Reserved.