com.mindoo.remote.api.jobs
Enum IRemoteJobTools.ConstantsType

java.lang.Object
  extended by java.lang.Enum<IRemoteJobTools.ConstantsType>
      extended by com.mindoo.remote.api.jobs.IRemoteJobTools.ConstantsType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IRemoteJobTools.ConstantsType>
Enclosing interface:
IRemoteJobTools

public static enum IRemoteJobTools.ConstantsType
extends java.lang.Enum<IRemoteJobTools.ConstantsType>

Use this enum to create standard IRemoteQualifiedNames of Eclipse and the Remote API


Enum Constant Summary
ECLIPSE_ACTION_PROPERTY
           
ECLIPSE_KEEP_PROPERTY
           
ECLIPSE_KEEPONE_PROPERTY
           
ECLIPSE_NO_IMMEDIATE_ERROR_PROMPT_PROPERTY
           
ECLIPSE_PROPERTY_IN_DIALOG
           
JOBDONE_ACTION_PROPERTY
           
 
Method Summary
static IRemoteJobTools.ConstantsType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IRemoteJobTools.ConstantsType[] 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

ECLIPSE_KEEP_PROPERTY

public static final IRemoteJobTools.ConstantsType ECLIPSE_KEEP_PROPERTY

ECLIPSE_KEEPONE_PROPERTY

public static final IRemoteJobTools.ConstantsType ECLIPSE_KEEPONE_PROPERTY

ECLIPSE_ACTION_PROPERTY

public static final IRemoteJobTools.ConstantsType ECLIPSE_ACTION_PROPERTY

ECLIPSE_PROPERTY_IN_DIALOG

public static final IRemoteJobTools.ConstantsType ECLIPSE_PROPERTY_IN_DIALOG

ECLIPSE_NO_IMMEDIATE_ERROR_PROMPT_PROPERTY

public static final IRemoteJobTools.ConstantsType ECLIPSE_NO_IMMEDIATE_ERROR_PROMPT_PROPERTY

JOBDONE_ACTION_PROPERTY

public static final IRemoteJobTools.ConstantsType JOBDONE_ACTION_PROPERTY
Method Detail

values

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

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

valueOf

public static IRemoteJobTools.ConstantsType 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