jinnIdeExecutors.base.context
Enum SpecificExecutionContext.SpecificContextType

java.lang.Object
  extended by java.lang.Enum<SpecificExecutionContext.SpecificContextType>
      extended by jinnIdeExecutors.base.context.SpecificExecutionContext.SpecificContextType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SpecificExecutionContext.SpecificContextType>
Enclosing class:
SpecificExecutionContext

public static enum SpecificExecutionContext.SpecificContextType
extends java.lang.Enum<SpecificExecutionContext.SpecificContextType>


Enum Constant Summary
AboutToExit
           
Buffer
           
Engine
           
FeedbackToUser
           
FileName
           
FilePath
           
IsBgMode
           
IsPrologMode
           
IsTrace
           
JinniServerPath
           
LibPath
           
ObjectName
           
 
Method Summary
static SpecificExecutionContext.SpecificContextType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SpecificExecutionContext.SpecificContextType[] 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

Engine

public static final SpecificExecutionContext.SpecificContextType Engine

Buffer

public static final SpecificExecutionContext.SpecificContextType Buffer

JinniServerPath

public static final SpecificExecutionContext.SpecificContextType JinniServerPath

AboutToExit

public static final SpecificExecutionContext.SpecificContextType AboutToExit

LibPath

public static final SpecificExecutionContext.SpecificContextType LibPath

FilePath

public static final SpecificExecutionContext.SpecificContextType FilePath

FileName

public static final SpecificExecutionContext.SpecificContextType FileName

IsTrace

public static final SpecificExecutionContext.SpecificContextType IsTrace

IsPrologMode

public static final SpecificExecutionContext.SpecificContextType IsPrologMode

IsBgMode

public static final SpecificExecutionContext.SpecificContextType IsBgMode

FeedbackToUser

public static final SpecificExecutionContext.SpecificContextType FeedbackToUser

ObjectName

public static final SpecificExecutionContext.SpecificContextType ObjectName
Method Detail

values

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

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

valueOf

public static SpecificExecutionContext.SpecificContextType 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