fr.cnes.sitools.plugins.resources.model
Enum ResourceParameterType

java.lang.Object
  extended by java.lang.Enum<ResourceParameterType>
      extended by fr.cnes.sitools.plugins.resources.model.ResourceParameterType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ResourceParameterType>

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

Parameter types for Parameterized resources

Author:
m.marseille (AKKA Technologies)

Enum Constant Summary
PARAMETER_ATTACHMENT
          Attach type for url attachments
PARAMETER_IN
          Deprecated. 
PARAMETER_INOUT
          Deprecated. 
PARAMETER_INTERN
          Intern Parameters for resource bean specificity
PARAMETER_OUT
          Deprecated. 
PARAMETER_USER_GUI
          Parameter used only in the client interface
PARAMETER_USER_INPUT
          Parameter to be set up by the final user before service call, use default otherwise
 
Method Summary
static ResourceParameterType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ResourceParameterType[] 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

PARAMETER_IN

@Deprecated
public static final ResourceParameterType PARAMETER_IN
Deprecated. 
A parameter IN is read only


PARAMETER_OUT

@Deprecated
public static final ResourceParameterType PARAMETER_OUT
Deprecated. 
A parameter OUT is write only


PARAMETER_INOUT

@Deprecated
public static final ResourceParameterType PARAMETER_INOUT
Deprecated. 
A parameter INOUT is readable and writable


PARAMETER_ATTACHMENT

public static final ResourceParameterType PARAMETER_ATTACHMENT
Attach type for url attachments


PARAMETER_INTERN

public static final ResourceParameterType PARAMETER_INTERN
Intern Parameters for resource bean specificity


PARAMETER_USER_INPUT

public static final ResourceParameterType PARAMETER_USER_INPUT
Parameter to be set up by the final user before service call, use default otherwise


PARAMETER_USER_GUI

public static final ResourceParameterType PARAMETER_USER_GUI
Parameter used only in the client interface

Method Detail

values

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

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

valueOf

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


Copyright © 2010-2013 CNES. All Rights Reserved.