com.sas.hls.work.workitem
Enum FlowParameter.FlowParameterType

java.lang.Object
  extended by java.lang.Enum<FlowParameter.FlowParameterType>
      extended by com.sas.hls.work.workitem.FlowParameter.FlowParameterType
All Implemented Interfaces:
Serializable, Comparable<FlowParameter.FlowParameterType>
Enclosing class:
FlowParameter

public static enum FlowParameter.FlowParameterType
extends Enum<FlowParameter.FlowParameterType>


Enum Constant Summary
DATE
          The flow parameter specifies a Date value.
LONG
          The flow parameter specifies a Long value.
STRING
          The flow parameter specifies a String value.
 
Method Summary
static FlowParameter.FlowParameterType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FlowParameter.FlowParameterType[] 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

LONG

public static final FlowParameter.FlowParameterType LONG
The flow parameter specifies a Long value.


STRING

public static final FlowParameter.FlowParameterType STRING
The flow parameter specifies a String value.


DATE

public static final FlowParameter.FlowParameterType DATE
The flow parameter specifies a Date value.

Method Detail

values

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

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

valueOf

public static FlowParameter.FlowParameterType 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 (c) 2014, SAS Institute Inc., Cary, NC, USA